spl_autoload_register() gaves wrong line for "class not found"
| Bug #38325 | spl_autoload_register() gaves wrong line for "class not found" | ||||
|---|---|---|---|---|---|
| Submitted: | 2006-08-04 03:38 UTC | Modified: | 2007-01-08 04:27 UTC | ||
| From: | marcos dot neves at gmail dot com | Assigned: | |||
| Status: | Closed | Package: | SPL related | ||
| PHP Version: | 5CVS-2006-08-04 (snap) | OS: | WINXP | ||
| Private report: | No | CVE-ID: | None | ||
[2006-08-04 03:38 UTC] marcos dot neves at gmail dot com
Description: ------------ <? //spl_autoload_register(); new Foo(); ?> The code above gives-me: Fatal error: Class 'Foo' not found in autoLoad.php on line 5 That?s ok, the line shows where the error occurs. Uncomment the spl_autoload_register() and the error will become: Fatal error: Class 'Foo' not found in autoLoad.php on line 7 The line error, goes to the last line of the script. Inside a big script, with many requires, can be very difficult to find where the errors really occurs Reproduce code: --------------- <? //spl_autoload_register(); // uncomment to test the bug new Foo(); ?> Expected result: ---------------- Fatal error: Class 'Foo' not found in autoLoad.php on line 5 Correct line Actual result: -------------- Fatal error: Class 'Foo' not found in autoLoad.php on line 7 Wrong line (always the last one)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2007-01-08 04:27 UTC] iliaa@php.net