Threaded
PHP Manual

Threaded::unlock

(PECL pthreads >= 2.0.0)

Threaded::unlockSynchronization

Descripción

public boolean Threaded::unlock ( void )

Unlock the referenced objects storage for the calling context

Parámetros

Esta función no tiene parámetros.

Valores devueltos

A boolean indication of success

Ejemplos

Ejemplo #1 Locking the property table of a threaded object

<?php
class My extends Thread {
    public function 
run() {
        
var_dump($this->lock());
        
/** nobody can read or write **/
        
var_dump($this->unlock());
        
/** reading / writing resumed for all other contexts */
    
}
}
$my = new My();
$my->start();
?>

El resultado del ejemplo sería:

bool(true)
bool(true)


Threaded
PHP Manual