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(); ?>
위 내용은 관련 내용을 포함하여 wampserver 설치 pthreads 다중 스레드 확장 튜토리얼을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.