Threaded::synchronized

(PECL pthreads >= 2.0.0)

Threaded::synchronizedͬ������

˵��

public Threaded::synchronized ( Closure $block [, mixed $... ] ) : mixed

�ڷ�����õ��߳��������л�ȡ����ͬ������Ȼ��ͬ��ִ�д����

����

block

Ҫִ�еĴ����

...

���͸������IJ���������

����ֵ

�����ķ���ֵ

����

Example #1 ͬ��

<?php
class My extends Thread {
    public function 
run() {
        
$this->synchronized(function($thread){
            if (!
$thread->done)
                
$thread->wait();
        }, 
$this);
    }
}
$my = new My();
$my->start();
$my->synchronized(function($thread){
    
$thread->done true;
    
$thread->notify();
}, 
$my);
var_dump($my->join());
?>

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

bool(true)