PHP ベース tsnts バージョンについては、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(); ?>