Heim  >  Artikel  >  Backend-Entwicklung  >  php多进程并行执行脚本的代码

php多进程并行执行脚本的代码

WBOY
WBOYOriginal
2016-07-25 08:58:371310Durchsuche
  1. #!/usr/bin/env php

  2. /**
  3. * php 多进程
  4. * by bbs.it-home.org
  5. */
  6. $cmds=array(
  7. array('/app/test.php','charge/pstat.php','mobile',1),
  8. array('/app/test.php','charge/pstat.php','mobile',2),
  9. array('/app/test.php','charge/pstat.php','click',1),
  10. array('/app/test.php','charge/pstat.php','click',2),
  11. array('/app/test.php','charge/pstat.php',1),
  12. array('/app/test.php','charge/pstat.php',2)
  13. );
  14. foreach($cmds as $cmd){

  15. $pid=pcntl_fork();
  16. if($pid==-1){ //进程创建失败
  17. die('fork child process failure!');
  18. }
  19. else if($pid){ //父进程处理逻辑
  20. pcntl_wait($status,WNOHANG);
  21. }
  22. else{ //子进程处理逻辑
  23. pcntl_exec('/usr/local/bin/php',$cmd);
  24. }
  25. }
  26. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn