php cli多进程有必要吗,PHP CLI模式下的多进程应用

#!/bin/env 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

* @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 <<

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}";

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值