Php/docs/pht-thread.start

提供:Dev Guides
< Php
移動先:案内検索

pht\Thread::start

(PECL pht >= 0.0.1)

pht\Thread::startStarts 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.


例1 Starting a new thread

<?phpuse pht\Thread;$thread = new Thread();$thread->start();$thread->join();