pht\Thread::join
(PECL pht >= 0.0.1)
pht\Thread::join — Joins a thread
说明
public pht\Thread::join ( void ) : voidThis method will join the spawned thread (though it will first wait for that thread's internal task queue to finish). As a matter of good practice, threads should always be joined. Not joining a thread may lead to undefined behaviour.
参数
此函数没有参数。
返回值
No return value.
范例
Example #1 Joining a thread
<?php
use pht\Thread;
$thread = new Thread();
$thread->start();
$thread->join();
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/pht-thread.join.php