Php/docs/pht-thread.start
来自菜鸟教程
pht\Thread::start
(PECL pht >= 0.0.1)
pht\Thread::start — Starts the new thread
说明
public pht\Thread::start ( ) : void
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.
范例
Example #1 Starting a new thread
<?phpuse pht\Thread;$thread = new Thread();$thread->start();$thread->join();