Maison > Article > développement back-end > wampserver安装pthreads多线程扩展教程
根据PHP ts\nts版选择对应pthreads的版本
安装pthreads扩展
测试pthreads扩展
<?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(); ?>
以上就介绍了wampserver安装pthreads多线程扩展教程,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。