当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP 多进程 解决难题

PHP 多进程 解决难题

2019年05月04日  | 移动技术网IT编程  | 我要评论
而且, 如果输入数据非法, 而脚本没有检测, 导致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<laruence@baidu.com>
* @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: {$return['pid']} exited with {$status}";
}
}
}

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网