(PECL pht >= 0.0.1)
pht\Thread::start — Starts the new thread
This will cause a new thread to be spawned for the associated pht\Thread object, where its internal task queue will begin to be processed.
此函数没有参数。
No return value.
示例 #1 Starting a new thread
<?php
use pht\Thread;
$thread = new Thread();
$thread->start();
$thread->join();