File_SMBPasswd::save() -- saves the smbpasswd file
Описание
Saves the contents of File_SMBPasswd object as a corresponding
smbpasswd file on the disc. Save implicitely locks the file.
Возвращаемое значение
mixed - Возвращает TRUE при удаче и
PEAR_Error в обратном случае.
Заметка
Эта функция не должна вызываться статически.
Пример
Пример 39-1. Using File_SMBPasswd::save() <?php
require_once('File_SMBPasswd.php');
$f = new File_SMBPasswd('./smbpasswd');
$f->load();
$ret = $f->addAccount('sepp3', 12, 'MyPw');
if (PEAR::isError($ret)) {
echo $ret->getMessage();
exit;
}
$ret = $f->modAccount('sepp', '', 'MyPw');
if (PEAR::isError($ret)) {
echo $ret->getMessage();
exit;
}
$ret = $f->delAccount('karli');
if (PEAR::isError($ret)) {
echo $ret->getMessage();
exit;
}
$status = $f->save();
if (PEAR::isError($status)) {
// handle errors
} else {
// continue processing
}
?> |
|
HIVE: All information for read only. Please respect copyright! |
|