1. 程式人生 > >PHP CLI模式下的多程序應用

PHP CLI模式下的多程序應用

PHP在很多時候不適合做常駐的SHELL程序, 他沒有專門的gc例程, 也沒有有效的記憶體管理途徑. 所以如果用PHP做常駐SHELL, 你會經常被記憶體耗盡導致abort而unhappy.

而且, 如果輸入資料非法, 而指令碼沒有檢測, 導致abort, 也會讓你很不開心.

那? 怎麼辦呢?

多程序….

為什麼呢?

 優點:
    1. 使用多程序, 子程序結束以後, 核心會負責回收資源
    2. 使用多程序,子程序異常退出不會導致整個程序Thread退出. 父程序還有機會重建流程.
    3. 一個常駐主程序, 只負責任務分發, 邏輯更清楚.

Then, 怎麼做呢?

接下來, 我們使用PHP提供的POSIX和Pcntl系列函式, 來實現一個PHP命令解析器, 主程序負責接受使用者輸入, 然後fork子程序執行, 並負責回顯子程序的結束狀態.

程式碼如下, 我加了註釋, 如果有不懂的地方, 可以翻閱手冊相關函式, 或者回覆留言.

#!/bin/env php
<?php
/** A example denoted muti-process application in php
 * @filename fork.php
 * @touch date Wed 10 Jun 2009 10:25:51 PM CST
 * @author Laruence<
[email protected]
> * @license http://www.zend.com/license/3_0.txt PHP License 3.0 * @version 1.0.0 */ /** 確保這個函式只能執行在SHELL中 */ if (substr(php_sapi_name(), 0, 3) !== 'cli') { die("This Programe can only be run in CLI mode"); } /** 關閉最大執行時間限制, 在CLI模式下, 這個語句其實不必要 */ set_time_limit(0); $pid = posix_getpid(); //取得主程序ID $user = posix_getlogin(); //取得使用者名稱 echo <<<eod USAGE: [command | expression] input php code to execute by fork a new process input quit to exit Shell Executor version 1.0.0 by laruence EOD; while (true) { $prompt = "\n{$user}$ "; $input = readline($prompt); readline_add_history($input); if ($input == 'quit') { break; } process_execute($input . ';'); } exit(0); function process_execute($input) { $pid = pcntl_fork(); //建立子程序 if ($pid == 0) {//子程序 $pid = posix_getpid(); echo "* Process {$pid} was created, and Executed:\n\n"; eval($input); //解析命令 exit; } else {//主程序 $pid = pcntl_wait($status, WUNTRACED); //取得子程序結束狀態 if (pcntl_wifexited($status)) { echo "\n\n* Sub process: {$pid} exited with {$status}"; } } }

但有一點, 我一定要提醒:

Process Control should not be enabled within a webserver environment and unexpected results may happen if any Process Control functions are used within a webserver environment.  --摘自PHP手冊

也就是說, 打消你在PHP Web開發中使用多程序的念頭吧!