|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-03-12 10:59 UTC] felipe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Apr 29 14:00:01 2026 UTC |
Description: ------------ The function function_get_args returns an error when called inside another function Reproduce code: --------------- //This works $path = func_get_args(); $path = join('/', $path); //This fails with the error //Fatal error: Call to undefined function function_get_args() $path = join('/', function_get_args());