[PHP错误异常]⑦--register_shutdown_fu

2017-09-14  本文已影响6人  子木同
Paste_Image.png Paste_Image.png Paste_Image.png Paste_Image.png
<?php

class Shutdown
{
    public function endScript()
    {
        if (error_get_last()) {
            echo "<pre>";
            print_r(error_get_last());
            echo "</pre>";
        }
        file_put_contents('D:\error\testError.txt', 'this is a test');
        die('end script');
    }
}

register_shutdown_function(array(new Shutdown(), 'endScript'));
echo md6();

?>
Paste_Image.png
上一篇下一篇

猜你喜欢

热点阅读