Mutex::lockAcquire Mutex Warning
The Mutex class has been removed in pthreads v3. Description
final
public
static
boolean
Mutex::lock
(
long
$mutex
)Attempt to lock the Mutex for the caller. An attempt to lock a Mutex owned (locked) by another Thread will result in blocking. Parameters
Return ValuesA boolean indication of success. Examples
Example #1 Mutex Locking and Unlocking
<?php The above example will output: bool(true) bool(true) |