|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-01-20 13:27 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 12 19:00:01 2025 UTC |
Description: ------------ if i turned on track_errors message of Fatal Errors not saved in $php_errormsg. Checked via register_shutdown_function Reproduce code: --------------- ini_set('track_errors', 'On'); function shutdown () { global $php_errormsg; echo "ERROR : ".$php_errormsg."\n"; } register_shutdown_function('shutdown'); $a = ''; $a->aaa(); Expected result: ---------------- 5.1.3-dev Fatal error: Call to a member function aaa() on a non-object in C:\usr\php_5_1_cvs\a.php on line 10 ERROR : Fatal error: Call to a member function aaa() on a non-object in C:\usr\php_5_1_cvs\a.php on line 10 Actual result: -------------- 5.1.3-dev Fatal error: Call to a member function aaa() on a non-object in C:\usr\php_5_1_cvs\a.php on line 10 ERROR :