您现在的位置是:首页 > 学无止境
PHP中利用pcntl实现多进程(模拟多线程)实例
/**
* 创建子进程入口
* @author selfimpr
* @blog http://blog.csdn.net/lgg201
* @mail lgg860911@yahoo.com.cn
* @param $func_name 代表子进程处理过...
* 创建子进程入口
* @author selfimpr
* @blog http://blog.csdn.net/lgg201
* @mail lgg860911@yahoo.com.cn
* @param $func_name 代表子进程处理过...
<?php /** * 创建子进程入口 * @author selfimpr * @blog http://blog.csdn.net/lgg201 * @mail lgg860911@yahoo.com.cn * @param $func_name 代表子进程处理过程的函数名 * @param other 接受不定参数, 提供给子进程的过程函数. */ function new_child($func_name) { $args = func_get_args(); unset($args[0]); $pid = pcntl_fork(); if ($pid == 0) { function_exists($func_name) and exit(call_user_func_array($func_name, $args)) or exit(-1); } else if ($pid == -1) { echo "Couldn’t create child process ."; } } //测试处理函数, 输出$prefix连接的数组 function test($prefix, $num) { while ($i++ < $num) { echo $prefix . $i ."\n"; } } //创建一个子进程 new_child("test", "child process ", 100); //父进程也开启一个与子进程同样多的循环. test("parent process", 100); //运行结果, 我这里运行父进程输出50个左右, 子进程开始运行. ?>原作者的博客上还有一个详细介绍:PHP扩展pcntl(进程控制以及信号处理)中文文档
风雪之隅也写过类似的文章,http://www.laruence.com/2009/06/11/930.html,他提到的优点就是:
优点: 1. 使用多进程, 子进程结束以后, 内核会负责回收资源 2. 使用多进程,子进程异常退出不会导致整个进程Thread退出. 父进程还有机会重建流程. 3. 一个常驻主进程, 只负责任务分发, 逻辑更清楚.然后他的代码就与上面有点区别,不过说白了还是大同小异:
#!/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: {$pid} exited with {$status}"; } } }
文章评论
- 登录后评论
点击排行
-
php-fpm安装、配置与优化
转载自:https://www.zybuluo.com/phper/note/89081 1、php中...
-
centos下postgresql的安装与配置
一、安装(以root身份进行)1、检出最新的postgresql的yum配置从ht...
-
Mysql的大小写敏感性
MYSQL在默认的情况下查询是不区分大小写的,例如:CREATE TABLE...
-
关于URL编码
转载自:http://www.ruanyifeng.com/blog/2010/02/url_encoding....
-
header中的Cache-control
网页的缓存是由HTTP消息头中的“Cache-control”来控制的,常见的...