Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17136 программистов и 1833 робота. Сейчас ищут 1692 программиста ...
File_HtAccess::save()
Вернуться к: File_HtAccess
File_HtAccess::save()
File_HtAccess::save() – saves the .htaccess file
Synopsis
mixed File_HtAccesss:save ( )
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
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
}
?>
Вернуться к: File_HtAccess