PHP多线程的实现(PHP多线程类)
生活随笔
收集整理的這篇文章主要介紹了
PHP多线程的实现(PHP多线程类)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
通過WEB服務器來實現PHP多線程功能。
當然,對多線程有深入理解的人都知道通過WEB服務器實現的多線程只能模仿多線程的一些效果,并不是真正意義上的多線程。
但不管怎么樣,它還是能滿足我們的一些需要的,在需要類似多線程的功能方面還是可以采用這個類。
/*** @title: PHP多線程類(Thread)* @version: 1.0* @author: phper.org.cn < web@phper.org.cn >* @published: 2010-11-2* * PHP多線程應用示例:* require_once 'thread.class.php';* $thread = new thread();* $thread->addthread('action_log','a');* $thread->addthread('action_log','b');* $thread->addthread('action_log','c');* $thread->runthread();* * function action_log($info) {* $log = 'log/' . microtime() . '.log';* $txt = $info . "\r\n\r\n" . 'Set in ' . Date('h:i:s', time()) . (double)microtime() . "\r\n";* $fp = fopen($log, 'w');* fwrite($fp, $txt);* fclose($fp);* }*/ class thread {var $hooks = array();var $args = array();function thread() {}function addthread($func){$args = array_slice(func_get_args(), 1);$this->hooks[] = $func;$this->args[] = $args;return true;}function runthread(){if(isset($_GET['flag'])){$flag = intval($_GET['flag']);}if($flag || $flag === 0){call_user_func_array($this->hooks[$flag], $this->args[$flag]);}else {for($i = 0, $size = count($this->hooks); $i < $size; $i++){$fp=fsockopen($_SERVER['HTTP_HOST'],$_SERVER['SERVER_PORT']);if($fp){$out = "GET {$_SERVER['PHP_SELF']}?flag=$i HTTP/1.1\r\n";$out .= "Host: {$_SERVER['HTTP_HOST']}\r\n";$out .= "Connection: Close\r\n\r\n";fputs($fp,$out);fclose($fp);}}}} }?
使用方法:
$thread = new thread(); $thread->addthread('func1','info1'); $thread->addthread('func2','info2'); $thread->addthread('func3','info3'); $thread->runthread();
說明:
addthread是添加線程函數,第一個參數是函數名,之后的參數(可選)為傳遞給指定函數的參數。
runthread是執行線程的函數。
轉載于:https://www.cnblogs.com/yzh5251/p/3699823.html
總結
以上是生活随笔為你收集整理的PHP多线程的实现(PHP多线程类)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Quartz Job schedulin
- 下一篇: 递归求链表的长度