Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 800
agsamek Avatar asked Aug 30 '11 10:08

agsamek


2 Answers

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!

like image 120
powtac Avatar answered Sep 20 '22 11:09

powtac


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.

like image 43
symcbean Avatar answered Sep 19 '22 11:09

symcbean