這個示例用于產生一個守護進程并可以通過信號處理進行關閉。

示例 #1 進程控制示例

<?php
//定義ticks
declare(ticks=1);

//產生子進程分支
$pid pcntl_fork();
if (
$pid == -1) {
     die(
"could not fork"); //pcntl_fork返回-1標明創(chuàng)建子進程失敗
} else if ($pid) {
     exit(); 
//父進程中pcntl_fork返回創(chuàng)建的子進程進程號
} else {
     
// 子進程pcntl_fork返回的時0
}

// 從當前終端分離
if (posix_setsid() == -1) {
    die(
"could not detach from terminal");
}

// 安裝信號處理器
pcntl_signal(SIGTERM"sig_handler");
pcntl_signal(SIGHUP"sig_handler");

// 執(zhí)行無限循環(huán)任務
while (1) {

    
// do something interesting here

}

function 
sig_handler($signo
{

     switch (
$signo) {
         case 
SIGTERM:
             
// 處理中斷信號
             
exit;
             break;
         case 
SIGHUP:
             
// 處理重啟信號
             
break;
         default:
             
// 處理所有其他信號
     
}

}

?>