PHP CLI模式下的多进程应用分析
2015-01-24信息快讯网
PHP在很多时候不适合做常驻的SHELL进程, 他没有专门的gc例程, 也没有有效的内存管理途径. 所以如果用PHP做常驻SHELL, 你会经常被内存耗尽导致abort而unhappy
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开发中使用多进程的念头吧!
原文:http://www.laruence.com/2009/06/11/930.html
php foreach循环中使用引用的问题
php用正则表达式匹配中文实例详解
php引用传值实例详解学习
php二维数组排序详解
PHP Curl多线程原理实例详解
Linux编译升级php的详细方法
php cURL和Rolling cURL并发方式比较
php操作mysqli(示例代码)
PHP 使用pcntl和libevent 实现Timer功能
div li的多行多列 无刷新分页示例代码
shell脚本作为保证PHP脚本不挂掉的守护进程实例分享
处理(php-cgi.exe - FastCGI 进程超过了配置的请求超时时限)的问题
解决FastCGI 进程超过了配置的活动超时时限的问题
深入解析PHP中的(伪)多线程与多进程
解析PHP实现多进程并行执行脚本
PHP实现多进程并行操作的详解(可做守护进程)
详解PHP内置访问资源的超时时间 time_out file_get_contents read_file
基于php-fpm 参数的深入理解
php-cli简介(不会Shell语言一样用Shell)
基于在生产环境中使用php性能测试工具xhprof的详解
php cli模式学习(PHP命令行模式)
获取PHP警告错误信息的解决方法
php cli 小技巧
深入php-fpm的两种进程管理模式详解
php的POSIX 函数以及进程测试的深入分析
基于Linux调试工具strace与gdb的常用命令总结
linux命令之调试工具strace的深入分析
PHP程序级守护进程的实现与优化的使用概述
Linux下实现PHP多进程的方法分享