PHP: set_error_handler - Manual - PHP: Hypertext Preprocessor
Per the comment below: There's no problem with static class functions. The proper way to set a callback for a static class function is: array("Classname", "functionname") The class name is a string. If you don't quote the string, PHP treats it as a barest...