|
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-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Feb 05 00:00:02 2026 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