2

error_get_lastに登録された関数内から関数が実際のエラーを返すように、PHP のシャットダウンをトリガーする簡単な方法はありますかregister_shutdown_function。カスタムのエラー処理とメール機能をストレス条件下でテストするために必要です。

4

2 に答える 2

1
<?php

function shutdown()
{
    echo "shutdown:\n";
    print_r(error_get_last());
}

register_shutdown_function('shutdown');

throw new Exception("fatal error");

print("END")
于 2013-08-22T08:59:22.487 に答える