发生错误时ob_start被中断

Jun*_*ior 3 php buffer

所以ob_start()应该以捕捉输出,直到另一个缓冲区函数被调用一样ob_get_clean(),ob_get_contents(),ob_get_flush().

但是当缓冲区读取器内部抛出异常时,它会通过停止并回显输出而不是继续捕获它来影响读取器.这是我想要防止的.

让我们说这是我的脚本:

<?php
    error_reporting(0);
    try {
        ob_start();
            echo "I don't wanna output this what so ever, so want to cache it in a variable with using ob_ functions";
            $unlink = unlink('some file that does not exist');
            if(!$unlink) throw new Exception('Something really bad happen.', E_ERROR); //throwing this exception will effect the buffer
        $output = ob_get_clean();
    } catch(Exception $e) {
        echo "<br />Some error occured: " . $e->getMessage();
        //print_r($e);
    }
?>
Run Code Online (Sandbox Code Playgroud)

该脚本将输出:

I don't wanna output this what so ever, so want to cache it in a variable with using ob_ functions
Some error occurred: Something really bad happen.
Run Code Online (Sandbox Code Playgroud)

什么时候打算打印

Some error occurred: Something really bad happen.
Run Code Online (Sandbox Code Playgroud)

我做错了什么,有解决方案吗?

Shi*_*Shi 7

我的猜测是,即使在catch块内,输出缓冲仍然有效.但是,脚本以活动输出缓冲结束,因此PHP会自动显示输​​出缓冲区.

所以你可以尝试调用ob_clean()异常处理程序.