Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 391 Bytes

常用函数.md

File metadata and controls

20 lines (19 loc) · 391 Bytes

常用的函数

报错后仍然可以执行

register_shutdown_function('my_shutdown_handler');
function my_shutdown_handler()
{
    $error = error_get_last();
    if ($error) {
        if (in_array($error['type'], array(E_WARNING, E_NOTICE))) {
            return;
        }
        try{
            // 报警
        } catch(Exception $e) {
        }
    }
    return false;
}