File_HtAccess::save() -- saves the .htaccess file
Description
Saves the contents of File_HtAccess object as a corresponding
.htaccess file on the disc.
Return value
mixed - Returns TRUE on success,
PEAR_Error on failure.
Note
This function can not be called
statically.
Example
Example 30-1. Using File_HtAccess::save() <?php
require_once('File_HtAccess.php');
/* create a new .htaccess file with given parameters */
$params['authname'] = 'Private';
$params['authtype'] = 'Basic';
$params['authuserfile'] = '/path/to/.htpasswd';
$params['authgroupfile'] = '/path/to/.htgroup';
$params['require'] = array('group', 'admins');
$fh = new File_HtAccess('.htaccess', $params);
$status = $fh->save();
if (PEAR::isError($status)) {
// handle errors
} else {
// continue processing
}
?> |
|