开发者

how to check if exit is clean in a shutdown function in PHP?

How can I test if exit is clean in a shutdown function in PHP?

开发者_运维技巧

By clean exit I mean that the script was not terminated due to an error.


Its a good question, for the moment I only have this idea: register a shutdown function like this:

function shutdown() {
    if (defined('END_REACHED') {
        echo 'Script executed with no error', PHP_EOL;
    }
}

register_shutdown_function('shutdown');

With auto_append_file add an additional file to the very end of every script execution which sets an constant.

Your auto_append_file.php content:

define('END_REACHED', TRUE);

In case you dont want to edit the php.ini you could do check error_get_last() or $php_errormsg in your register shutdown function!


There are lots of reasons a script might terminate prematurely. There is no generic solution. The only errors which will cause the script to terminate prematurely are fatal errors - and in most cases a shutdown function will not run after a fatal error, similarly a custom error handler will only reliably see non-fatal errors. Then there's the option of setting up signal handlers - but again they only see some of the story.

The big question of course, is what do you want to do with this information in the shutdown function?

The only reliable way to determine of your logic completed as expected is to raise a semaphore when this happens and check it in the shutdown function.


A call to error_get_last() can tell you if or which error occurred. If the function returns NULL, it is a clean shutdown.


I've ported (for PHP 5.3) ezcExecution component which handles this nicely. See https://github.com/sobstel/Execution. Basically you need to inform lib that exit was clean (by calling Execution::cleanExit(). Otherwise it means exit was not clean. Simple like that.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜