php实现多进程 多任务的一例代码
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Lepaskan: 2016-07-25 08:58:35
asal
1636 orang telah melayarinya
-
-
/**
- *基于PHP5实现
- *借助proc_open
- *能启动多进程,你可以使用你的想象力做你想做的了
- *如果你是在linux上跑php,并且启用pcntl模块后,使用pcntl函数该更好
- *最后修改:by bbs.it-home.org 2013/6/20
- **/
- error_reporting(E_ALL);
- set_time_limit(0);
class Thread {
- protected $_pref; // process reference
- protected static $_instance = null;
- protected $_pipes;
private function __construct() {
- $this->_pref = 0;
- }
public static function getInstance($file) {
- if (null == self::$_instance) {
- self::$_instance = new self;
- }
$descriptor = array(
- 0 => array("pipe", "r"),
- 1 => array("pipe", "w"),
- 2 => array("file", "./error-output.txt", "a"),
- );
- self::$_instance->_pref = proc_open("php -q $file", $descriptor, self::$_instance->_pipes);
- return true;
- }
public function __destruct() {
- proc_close($this->_pref);
- $this->_pref = null;
- }
- ?>
-
复制代码
|
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel terbaru oleh pengarang
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11
Isu terkini
-
2025-03-18 17:12:12
-
2025-03-14 11:44:41
-
2025-03-14 11:42:06
-
2025-03-14 11:06:10
-
2025-03-13 12:08:12
Topik-topik yang berkaitan
Lagi>