输出缓冲区错误处理

时间:2015-09-20 21:20:55

标签: php error-handling output output-buffering

让我们假设一个简单的片段用于模板,并且是using output control (ob)

public function capture($file, array $args = array())
{
    extract($args, EXTR_SKIP);

    ob_start();

    require $file; //'foo.php'

    return ob_get_clean();
}

foo.php有错误(由error handlershutdown handler处理)

<?php

echo "before";
echo $someVariable; //$someVariable is undefined here
echo "after";

输出

before <- would like to avoid
some message from the error handler

问题:错误时是否可以避免文件中的任何输出?

是,

1 个答案:

答案 0 :(得分:4)

如果使用关闭处理程序而不是错误处理程序,它可以清除输出,因为错误处理程序只能在它之前清除输出,因此在它之后输出的任何内容仍将呈现。

<?php

function error_handler()
{
    if(error_get_last()) {
        ob_get_clean();
        echo 'An error has occured.';
    }
}

register_shutdown_function('error_handler');

function capture()
{
    ob_start();

    require 'foo.php';

    return ob_get_clean();
}

echo capture();

// foo.php
<?php

echo 'before';
echo $variable;
echo 'after';

?>

这只会输出&#39;发生了错误。&#39;

然而,使用set_error_handler,它将输出&#39;出现错误。之后&#39;除非您添加DIE()或类似于错误处理程序的东西。