|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-10-24 14:17 UTC] mark at tapinternet dot com
set_error_handler() does not accept static class functions
as a custom error handling function.
set_error_handler('ErrorClass::handler') will not report
false if called twice in succession. But it will also not
route errors through the static class function. Either it
should return false so that a script can realize the input
was not handled properly, or it should route errors
throught the static class function.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 15:00:01 2025 UTC |
the syntax for class method callbacks is set_error_handler(array("ErrorClass","handler")) although i like your idea of how it could look like moved to feature requestsI don't think this is fully functional. Correct me if I'm wrong but an error handler of "Class::function" and "function" should not function any different if they are the same code. Use the code below, and uncomment each of the two set_error_handler() calls differnetly. You will see that the plain function captures the error, while the Class::function does not. <? class ErrorClass { function _errorHandler ($level, $message, $file, $line, $context) { static $count; print "\n\n got ".++$count." errors\n\n $message \n\n"; } } function _errorHandler ($level, $message, $file, $line, $context) { static $count; print "\n\n got ".++$count." errors\n\n $message \n\n"; } //test code error_reporting (E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE); //set_error_handler('_errorHandler'); //set_error_handler(array("ErrorClass","_errorHandler")); while( list($k,$v) = each($notarray) ) { //... } ?>