Threaded::unlock

(PECL pthreads < 3.0.0)

Threaded::unlockͬ������

Warning

pthreads v3 �����Ƴ��˷����� ��ʹ�� Threaded::synchronized() ������

˵��

public Threaded::unlock ( void ) : bool

�ӵ����������н��������õĶ���

����

�˺���û�в�����

����ֵ

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

����

Example #1 ���������Ա����

<?php
class My extends Thread {
    public function 
run() {
        
var_dump($this->lock());
        
/** �����߳��޷�ִ�ж�/д���� **/
        
var_dump($this->unlock());
        
/** �����߳̿���ִ�ж�/д���� */
    
}
}
$my = new My();
$my->start();
?>

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

bool(true)
bool(true)