Stackable
PHP Manual

Stackable::unlock

(PECL pthreads >= 0.40)

Stackable::unlockSynchronization

说明

final public boolean Stackable::unlock ( void )

Unlock the referenced objects storage for the calling context

参数

此函数没有参数。

返回值

A boolean indication of success

范例

Example #1 Locking Object Storage

<?php
class Work extends Stackable {
    public function 
run() {
        
var_dump($this->lock());
        
/** nobody can read or write **/
        
var_dump($this->unlock());
        
/** reading / writing resumed for all contexts */
    
}
}
class 
My extends Worker {
    public function 
run(){
        
/** ... **/
    
}
}
$my = new My();
$work = array(new Work());
$my->stack($work[0]);
$my->start();
?>

以上例程会输出:

bool(true)
bool(true)


Stackable
PHP Manual