views:

28

answers:

1

Is it possible to invoke a function when a cron process is killed from the command line (via ctrl+c) or with the kill command?

I have tried register_shutdown_function(), but it doesn't seen to be invoked when the script is killed, but does get invoked when the script ends normally.

I am trying to log the result to a file and update a database value when a cron instance is killed automatically (ie. has been running too long).

Thanks.

+2  A: 

According to a comment in the manual on register_shutdown_function(), this can be done the following way:

When using CLI ( and perhaps command line without CLI - I didn't test it) the shutdown function doesn't get called if the process gets a SIGINT or SIGTERM. only the natural exit of PHP calls the shutdown function. To overcome the problem compile the command line interpreter with --enable-pcntl and add this code:

 <?php  
 function sigint()  { 
    exit;  
 }  
 pcntl_signal(SIGINT, 'sigint');  
 pcntl_signal(SIGTERM, 'sigint');  
 ?>

This way when the process recieves one of those signals, it quits normaly, and the shutdown function gets called. ... (abbreviating to save space, read the full text)

If that is too much hassle, I would consider doing the timing out from within PHP by setting a time limit instead. Reaching the limit will throw a fatal error, and the shutdown function should get called normally.

Pekka
That's cool, but I don't think I'll be able to recompile php on a production machine.
Wei
@Wei Why not rely on PHP's time limit instead? (Provided it works on CLI - I have never tried, and some comments [here](http://de.php.net/manual/en/function.set-time-limit.php) suggest it is hard coded to 0 - you'd have to try out)
Pekka
@Wei also, `pcntl` may already be enabled in your PHP version, check it
Pekka
The time limit would only work on one of the kill parameters. I have other parameters in place as well including memory usage and cpu usage.
Wei
@Wei well, you explicitly mentioned the time limit only... No idea whether there is another way, at least not using `kill`
Pekka