Thread::start

(PECL pthreads >= 2.0.0)

Thread::startִ��

˵��

public Thread::start ([ int $options ] ) : bool

�ڶ����߳���ִ�� run ����

����

options

��ѡ���������������̼̳߳С�Ĭ��ֵΪ PTHREADS_INHERIT_ALL

����ֵ

����ֵ����ʾ�����ɹ����

����

Example #1 ��ʼ�߳�

<?php
class My extends Thread {
    public function 
run() {
        
/** ... **/
    
}
}
$my = new My();
var_dump($my->start());
?>

�������̻������

bool(true)