- 论坛徽章:
- 0
|
今天抽空复习了下php(已经很久没有用了, 工作和PHP没有联系),简单的封装了个error处理的class.
我想在class Error的__constructor()里加上
set_error_handler('Error::handleError');
来定义error处理函数为Error的一个static function (public)。
但是我用红色的这条语句失败了。没有set成功。
最后我很无奈的写成类似下面的这样来处理:
<?php
class Error
{
public function __construct()
{
// set the error reporting level & set the error handler
error_reporting(E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE);
set_error_handler('handleError'); // handleError -> Error::handleError
};
public static function handleError($errno, $errstr, $errfile, $errline)
{
;//deal error
};
};
function handleError($errno, $errstr, $errfile, $errline)
{
return Error::handleError($errno, $errstr, $errfile, $errline);
}
?>
虽然是实现了我的想法,但是感觉很不爽,多了个鸡肋的函数。也破化了封装。
有什么办法可以直接得到Error::handleError的句柄?
[ 本帖最后由 seaheart 于 2006-4-26 17:20 编辑 ] |
|