php
windows
本人php版本是5.4.17的因此下載php_pthreads-0.1.0-5.4-ts-vc9-x86.zip文件包,其中0.1.0表示爲當前pthreads版本號,5.4爲php版本號,ts就是以前判斷php對應的ts、nts版,vs9表明是Visual Studio 2008 compiler編譯器編譯的,最後的x86表明的是32位的版本。安全
將下載好的php_pthreads-0.1.0-5.4-ts-vc9-x86.zip文件包解壓獲得服務器
pthreadVC2.dll和php_pthreads.dll文件,把vc2文件放到php.exe同級目錄,把php_pthreads.dll放到擴展目錄下。測試
一、修改php.ini文件 添加extension=php_pthreads.dll
二、修改Apache配置文件httpd.conf 添加LoadFile "X:/PHP5/pthreadVC2.dll"
this
三、重啓Apache服務器spa
<?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(); ?>
運行以上代碼獲得「HelloWorld」,就說明安裝pthreads擴展成功!.net