File_SMBPasswd::lock() -- lock the smbpasswd file
Beschrijving
lock the smbpasswd file.
Return waarde
mixed - Geeft TRUE terug bij success,
PEAR_Error als het faalt.
Note
Deze functie kan niet statisch worden aangeroepen.
Voorbeeld
Voorbeeld 39-1. Using File_SMBPasswd::lock() <?php
require_once('File/SMBPasswd.php');
$fh = new File_SMBPasswd('/usr/local/private/smbpasswd');
$status = $fh->lock();
if (PEAR::isError($status)) {
// handle errors
} else {
// continue processing
}
?> |
|