File_SMBPasswd::load() -- load the contents of an existing smbpasswd file
Beschrijving
Load the contents of 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::load() <?php
require_once('File/SMBPasswd.php');
$fh = new File_SMBPasswd('/usr/local/private/smbpasswd');
$status = $fh->load();
if (PEAR::isError($status)) {
// handle errors
} else {
// continue processing
}
?> |
|