我的输出缓冲区有些问题。我正在缓冲我的脚本并使用回调打印结果。问题是如果在任何时候抛出错误,没有显示任何内容,我得到一个空白屏幕。我已经尝试设置自己的自定义错误处理程序,但似乎没有任何工作。我有一种感觉这是因为错误导致我的缓冲区调用回调方法而不是我的错误处理程序。无论是那个还是因为我将错误处理程序作为静态方法,但改变它会导致其他地方出现问题。
我真的很感激任何帮助,因为这个让我难过!
public function constructor()
{
ob_start(array(__CLASS__, 'render'));
self::$buffer_level = ob_get_level();
set_error_handler(array(__CLASS__, 'exception_handler'));
set_exception_handler(array(_CLASS__, 'exception_handler'));
RUNNING MY SCRIPT HERE
ob_end_flush();
}
public static function exception_handler($exception, $message = NULL, $file = NULL, $line = NULL)
{
while (ob_get_level() > self::$buffer_level)
{
ob_end_clean();
}
echo $exception.' - '.$message.' - '.$file.' - '.$line.'<br/>';
}
答案 0 :(得分:1)
我建议在PHP中启用错误日志记录,默认情况下会将错误发送到apache错误日志。您也可以尝试启用track_errors,但我认为日志是最好的选择。如果您无权访问apache日志,则可能需要手动记录。
使用输出缓冲和其他“幕后”内容(如ajax)时,日志文件和跟踪策略是必不可少的。
您可能还会查看output_buffering设置。请参阅此文章:http://thinkpositivesoftware.blogspot.com/2009/03/have-blank-php-page.html