PHP CLI模式下的多进程应用

PHP在不少时候不适合作常驻的SHELL进程, 他没有专门的gc例程, 也没有有效的内存管理途径. 因此若是用PHP作常驻SHELL, 你会常常被内存耗尽致使abort而unhappy. php

并且, 若是输入数据非法, 而脚本没有检测, 致使abort, 也会让你很不开心. html

那? 怎么办呢? web

多进程…. express


为何呢? api

 
  1.  优势:
  2.     1. 使用多进程, 子进程结束之后, 内核会负责回收资源
  3.     2. 使用多进程,子进程异常退出不会致使整个进程Thread退出. 父进程还有机会重建流程.
  4.     3. 一个常驻主进程, 只负责任务分发, 逻辑更清楚.

Then, 怎么作呢? app

接下来, 咱们使用PHP提供的POSIX和Pcntl系列函数, 来实现一个PHP命令解析器, 主进程负责接受用户输入, 而后fork子进程执行, 并负责回显子进程的结束状态. 函数

代码以下, 我加了注释, 若是有不懂的地方, 能够翻阅手册相关函数, 或者回复留言. ui

 
  1. #!/bin/env php
  2. <?php
  3. /** A example denoted muti-process application in php
  4. * @filename fork.php
  5. * @touch date Wed 10 Jun 2009 10:25:51 PM CST
  6. * @author Laruence<laruence@baidu.com>
  7. * @license http://www.zend.com/license/3_0.txt PHP License 3.0
  8. * @version 1.0.0
  9. */
  10. /** 确保这个函数只能运行在SHELL中 */
  11. if (substr(php_sapi_name(), 0, 3) !== 'cli') {
  12.     die("This Programe can only be run in CLI mode");
  13. }
  14. /** 关闭最大执行时间限制, 在CLI模式下, 这个语句其实没必要要 */
  15. set_time_limit(0);
  16. $pid = posix_getpid(); //取得主进程ID
  17. $user = posix_getlogin(); //取得用户名
  18. echo <<<EOD
  19. USAGE: [command | expression]
  20. input php code to execute by fork a new process
  21. input quit to exit
  22.         Shell Executor version 1.0.0 by laruence
  23. EOD;
  24. while (true) {
  25.         $prompt = "\n{$user}$ ";
  26.         $input = readline($prompt);
  27.         readline_add_history($input);
  28.         if ($input == 'quit') {
  29.                break;
  30.           }
  31.         process_execute($input . ';');
  32. }
  33. exit(0);
  34. function process_execute($input) {
  35.         $pid = pcntl_fork(); //建立子进程
  36.         if ($pid == 0) {//子进程
  37.                 $pid = posix_getpid();
  38.                 echo "* Process {$pid} was created, and Executed:\n\n";
  39.                 eval($input); //解析命令
  40.                 exit;
  41.         } else {//主进程
  42.                 $pid = pcntl_wait($status, WUNTRACED); //取得子进程结束状态
  43.                 if (pcntl_wifexited($status)) {
  44.                         echo "\n\n* Sub process: {$return['pid']} exited with {$status}";
  45.                 }
  46.         }
  47. }

但有一点, 我必定要提醒: spa

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手册
相关文章
相关标签/搜索