|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-02-27 13:30 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 09:00:01 2025 UTC |
Description: ------------ <?php if (1){ a(); function a(){} } ?> Fatal error: Call to undefined function a() in D:\www\test.php on line 3 Reproduce code: --------------- <?php if (1){ a(); function a(){} } ?> Fatal error: Call to undefined function a() in D:\www\test.php on line 3 Expected result: ---------------- NULL Actual result: -------------- NULL