美文网首页
[PHP错误异常]⑦--register_shutdown_fu

[PHP错误异常]⑦--register_shutdown_fu

作者: 子木同 | 来源:发表于2017-09-14 16:07 被阅读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

    相关文章

      网友评论

          本文标题:[PHP错误异常]⑦--register_shutdown_fu

          本文链接:https://www.haomeiwen.com/subject/bmsdsxtx.html