当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP使用Pthread实现的多线程操作实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-26 15:38:05 浏览: 评论:0 

这篇文章主要介绍了PHP使用Pthread实现的多线程操作的方法,以完整实例形式分析了php多线程的创建及使用相关技巧,需要的朋友可以参考下,本文实例讲述了PHP使用Pthread实现的多线程操作,分享给大家供大家参考,具体如下:

  1. <?php  
  2. class vote extends Thread { 
  3.   public $res  = ''
  4.   public $url  = array(); 
  5.   public $name  = ''
  6.   public $runing = false; 
  7.   public $lc   = false; 
  8.   public function __construct($name) { 
  9.     $this->res  = '暂无,第一次运行.'
  10.     $this->param  = 0; 
  11.     $this->lurl  = 0; 
  12.     $this->name  = $name
  13.     $this->runing = true; 
  14.     $this->lc   = false; 
  15.   } 
  16.   public function run() { 
  17.     while ($this->runing) { 
  18.       if ($this->param != 0) { 
  19.         $nt     = rand(1, 10); 
  20.         echo "线程[{$this->name}]收到任务参数::{$this->param},需要{$nt}秒处理数据.\n"
  21.         $this->res  = rand(100, 999); 
  22.         sleep($nt); 
  23.         $this->lurl = $this->param; 
  24.         $this->param  = ''
  25.       } else { 
  26.         echo "线程[{$this->name}]等待任务..\n"
  27.       } 
  28.       sleep(1); 
  29.     } 
  30.   } 
  31. //这里创建线程池. 
  32. $pool[] = new vote('a'); 
  33. $pool[] = new vote('b'); 
  34. $pool[] = new vote('c'); 
  35. //启动所有线程,使其处于工作状态 
  36. foreach ($pool as $w) { 
  37.   $w->start(); 
  38. //派发任务给线程 
  39. for ($i = 1; $i < 10; $i++) { 
  40.   $worker_content = rand(10, 99); 
  41.   while (true) { 
  42.     foreach ($pool as $worker) { 
  43.       //参数为空则说明线程空闲 
  44.       if ($worker->param=='') { 
  45.         $worker->param = $worker_content
  46.         echo "[{$worker->name}]线程空闲,放入参数{$worker_content},上次参数[{$worker->lurl}]结果[{$worker->res}].\n"
  47.         break 2; 
  48.       } 
  49.     } 
  50.     sleep(1); 
  51.   } 
  52. echo "所有线程派发完毕,等待执行完成.\n"
  53. //等待所有线程运行结束 
  54. while (count($pool)) { 
  55.   //遍历检查线程组运行结束 
  56.   foreach ($pool as $key => $threads) { 
  57.     if ($worker->param=='') { 
  58.       echo "[{$threads->name}]线程空闲,上次参数[{$threads->lurl}]结果[{$threads->res}].\n"
  59.       echo "[{$threads->name}]线程运行完成,退出.\n"
  60.       //设置结束标志 
  61.       $threads->runing = false; 
  62.       unset($pool[$key]); 
  63.     } 
  64.   } 
  65.   echo "等待中...\n"
  66.   sleep(1); 
  67. echo "所有线程执行完毕.\n"

希望本文所述对大家php程序设计有所帮助。

Tags: Pthread PHP多线程

分享到: