码迷,mamicode.com
首页 > 编程语言 > 详细

php安装threads多线程扩展

时间:2015-12-09 23:09:56      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

php5.3或以上,且为线程安全版本。apache和php使用的编译器必须一致。
通过phpinfo()查看Thread Safety为enabled则为线程安全版。
通过phpinfo()查看Compiler项可以知道使用的编译器。本人的为:MSVC9 (Visual C++ 2008)。

 

一、下载pthreads扩展
下载地址:http://windows.php.net/downloads/pecl/releases/pthreads

 

二、安装pthreads扩展
复制php_pthreads.dll 到目录 bin\php\ext\ 下面。
复制pthreadVC2.dll 到目录 bin\php\ 下面。
复制pthreadVC2.dll 到目录 C:\windows\system32 下面。
打开php配置文件php.ini。在后面加上extension=php_pthreads.dll
提示!Windows系统需要将 pthreadVC2.dll 所在路径加入到 PATH 环境变量中。我的电脑--->鼠标右键--->属性--->高级--->环境变量--->系统变量--->找到名称为Path的--->编辑--->在变量值最后面加上pthreadVC2.dll的完整路径(本人的为C:\WINDOWS\system32\pthreadVC2.dll)。

 

三、添加thread类

<?php
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.1rn";
$out .= "Host: {$_SERVER[‘HTTP_HOST‘]}rn";
$out .= "Connection: Closernrn";
fputs($fp,$out);
fclose($fp);
}
}
}
}
}


四、测试pthreads扩展

include(‘thread.php‘);
class AsyncOperation extends Thread {
public function __construct($arg){
$this->arg = $arg;
}

public function run(){
if($this->arg){
printf("Hello %s\n", $this->arg);
}
}
}
$thread = new AsyncOperation("World");
if($thread->start())
$thread->join();

php安装threads多线程扩展

标签:

原文地址:http://www.cnblogs.com/php-rearch/p/5034413.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!