本文是关于PHP的相关知识教程分享,分享一下关于php处理信号的示例,我们常用的信号有kill sigterm sigkill【kill命令】、ctrl+c sigint【键盘发出】、reload sinhub【一般从终端发出】、ctrl+z sigstop 【键盘发出】、定时器 sigalarm【一个进程只能有一个定时时间,多的会被新值覆盖】等,详细内容请看本文。
实例分享php处理信号示例
示例代码如下:
<?php
function sighandler($signo){
echo 'just for sigint',"\n";
}
function sighandler2($signo){
echo 'just for sigquit',"\n";
}
declare(ticks=1);
pcntl_signal(SIGINT,"sighandler");
pcntl_signal(SIGQUIT,"sighandler2");
for($i=1;$i<30;$i++){
file_put_contents('/home/tbtest/out.txt',"$i"."秒\n");
sleep(1);
}
~
执行结果:
root@lyh:/home/tbtest# php sigint.php
^Cjust for sigint
^Cjust for sigint
^Cjust for sigint
just for sigquit
^Cjust for sigint
^Cjust for sigint
^Z
[1]+ Stopped php sigint.php
root@lyh:/home/tbtest# bg
[1]+ php sigint.php &
root@lyh:/home/tbtest# fg
php sigint.php
root@lyh:/home/tbtest# cat out.txt
29秒
root@lyh:/home/tbtest#
关于捕捉sigquit
上面捕捉到了jsut for sigquit 是因为我另外起了一个终端:
root@lyh:~# ps -aux |grep php
root 16385 0.5 1.9 377720 19468 pts/2 S+ 15:09 0:00 php sigint.php
root 16390 0.0 0.0 11744 932 pts/0 S+ 15:09 0:00 grep --color=auto php
root@lyh:~# kill -s sigquit 16385
ps:pcntl_signal_dispatch 比ticks效率会更高
关于php处理信号示例分享就到这里,翼速应用平台内有更多相关资讯,欢迎查阅!
我来说两句