日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区

PHP CLI模式下的多進程應(yīng)用分析_PHP教程

編輯Tag賺U幣

推薦:基于php-fpm 參數(shù)的深入理解
本篇文章是對php-fpm參數(shù)進行了詳細的分析介紹,需要的朋友參考下

PHP在很多時候不適合做常駐的SHELL進程, 他沒有專門的gc例程, 也沒有有效的內(nèi)存管理途徑. 所以如果用PHP做常駐SHELL, 你會經(jīng)常被內(nèi)存耗盡導致abort而unhappy.

而且, 如果輸入數(shù)據(jù)非法, 而腳本沒有檢測, 導致abort, 也會讓你很不開心.

那? 怎么辦呢?

多進程….

為什么呢?

優(yōu)點:
1. 使用多進程, 子進程結(jié)束以后, 內(nèi)核會負責回收資源
2. 使用多進程,子進程異常退出不會導致整個進程Thread退出. 父進程還有機會重建流程.
3. 一個常駐主進程, 只負責任務(wù)分發(fā), 邏輯更清楚

Then, 怎么做呢?

接下來, 我們使用PHP提供的POSIX和Pcntl系列函數(shù), 來實現(xiàn)一個PHP命令解析器, 主進程負責接受用戶輸入, 然后fork子進程執(zhí)行, 并負責回顯子進程的結(jié)束狀態(tài).

代碼如下, 我加了注釋, 如果有不懂的地方, 可以翻閱手冊相關(guān)函數(shù), 或者回復留言.

復制代碼 代碼如下:hl5o.cn

#!/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
*/

/** 確保這個函數(shù)只能運行在SHELL中 */
if (substr(php_sapi_name(), 0, 3) !== 'cli') {
die("This Programe can only be run in CLI mode");
}

/** 關(guān)閉最大執(zhí)行時間限制, 在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(); //創(chuàng)建子進程
if ($pid == 0) {//子進程
$pid = posix_getpid();
echo "* Process {$pid} was created, and Executed:\n\n";
eval($input); //解析命令
exit;
} else {//主進程
$pid = pcntl_wait($status, WUNTRACED); //取得子進程結(jié)束狀態(tài)
if (pcntl_wifexited($status)) {
echo "\n\n* Sub process: {$pid} exited with {$status}";
}
}
}


但有一點, 我一定要提醒:
復制代碼 代碼如下:hl5o.cn

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開發(fā)中使用多進程的念頭吧!


原文:http://www.laruence.com/2009/06/11/930.html

分享:php-cli簡介(不會Shell語言一樣用Shell)
剛才說到,我們可以用php來開發(fā)Shell程序。有的同學可能會問啦:php不是用來做網(wǎng)頁的么?。是的,php可以用來做動態(tài)網(wǎng)頁,并且當初php就是為做動態(tài)網(wǎng)頁而開發(fā)的語言,但是理論上php可以用來做任何的程序,甚至是桌面程序

來源:模板無憂//所屬分類:PHP教程/更新時間:2013-06-04
相關(guān)PHP教程