PHP7之間的通訊進程與信號
2019-11-08
信號
信號是一種系統(tǒng)調用。通常我們用的kill命令就是發(fā)送某個信號給某個進程的。具體有哪些信號可以在liunx/mac中運行 kill -l
查看。下面這個例子中,父進程等待5秒鐘,向子進程發(fā)送sigint信號。子進程捕獲信號,調信號處理函數(shù)處理。
代碼演示
<?php $childList = []; $parentId = posix_getpid(); //信號處理函數(shù) function signHandler($sign){ $pid = posix_getpid(); exit("process:{$pid},is killed,signal is {$sign}\n"); } $pid = pcntl_fork(); if ($pid == -1){ // 創(chuàng)建子進程失敗 exit("fork fail,exit!\n"); }elseif ($pid == 0){ //子進程執(zhí)行程序 //注冊信號處理函數(shù) declare(ticks = 10); pcntl_signal(SIGINT,"signHandler");//注冊SIGINT信號處理函數(shù) $pid = posix_getpid(); while (true){ echo "child process {$pid},is running.......\n"; sleep(1); } }else{ $childList[$pid] = 1; sleep(5); posix_kill($pid,SIGINT);//向指定進程發(fā)送一個信號 } // 等待子進程結束 while(!empty($childList)){ $pid = pcntl_wait($status); if ($pid > 0){ unset($childList[$pid]); } } echo "The child process is killed by parent process {$parentId}\n";
運行結果
當父進程沒有發(fā)送信號的時候,子進程會一直循環(huán)輸出‘child process is running...’,父進程發(fā)送信號后,子進程在檢查到有信號進來的時候調用對應的回調函數(shù)處理退出了子進程。
declare(ticks = 10)
這里的ticks=10,可以理解為程序執(zhí)行10條低級語句后,檢查看有沒有未執(zhí)行的信號,有的話就去處理。