Home >Backend Development >PHP Tutorial >An example of code to implement multi-process and multi-tasking in PHP

An example of code to implement multi-process and multi-tasking in PHP

WBOY
WBOYOriginal
2016-07-25 08:58:351571browse
  1. /**

  2. *Based on PHP5
  3. *With the help of proc_open
  4. * you can start multiple processes, you can use your imagination to do what you want
  5. *If you are running php on Linux and enable the pcntl module, use the pcntl function. Better
  6. *Last modified: by bbs.it-home.org 2013/6/20
  7. **/
  8. error_reporting(E_ALL);
  9. set_time_limit(0);

  10. class Thread {

  11. protected $_pref; // process reference
  12. protected static $_instance = null;
  13. protected $_pipes;

  14. private function __construct() {

  15. $this->_pref = 0;
  16. }

  17. public static function getInstance($file) {

  18. if (null == self::$_instance) {
  19. self::$_instance = new self;
  20. }

  21. $descriptor = array(

  22. 0 => array("pipe", "r"),
  23. 1 => array("pipe", "w"),
  24. 2 => array("file", "./error-output.txt", "a"),
  25. );
  26. self::$_instance->_pref = proc_open("php -q $file", $descriptor, self::$_instance->_pipes);
  27. return true;
  28. }

  29. public function __destruct() {

  30. proc_close($this->_pref);
  31. $this->_pref = null;
  32. }
  33. ?>

复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn