Hi,
I have a problem with signal handling not working in cli PHP
Relevant information:
PHP 4.3.11 (cli) (built: Jun 21 2005 12:10:12)
Cent OS kernel 2.6.9
Sample code:
<?
//declare(ticks = 1);
pcntl_signal(SIGINT, "sighandler");
pcntl_signal(SIGQUIT, "sighandler");
function sighandler($signo){
echo "Got ", $signo;
//ob_end_flush();
}
while(1){
sleep(5);
}
?>
With this code running, I can press Ctrl-C and Ctrl-\ as much as I want, it ignores it and just sits there.
If I uncomment the ticks line, the signals are simply not handled and result in immediate script termination.
Does anyone have any idea what I'm doing wrong?