|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 11 19:00:02 2025 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());