File_HtAccess::load

File_HtAccess::load() – load the contents of existing .htaccess file

Synopsis

mixed File_HtAccess::load ( )

Description

Load the contents of .htaccess file.

Return value

mixed - Returns TRUE on success, PEAR_Error on failure.

Note

This function can not be called statically.

Example

Using File_HtAccess::load()

<?php
require_once('File/HtAccess.php');

$fh     = new File_HtAccess('.htaccess');
$status $fh->load();

if (
PEAR::isError($status)) {
  
// handle errors
} else {
  
// continue processing
}
  
?>
constructor (Previous) saves the .htaccess file (Next)
Last updated: Sat, 16 Feb 2019 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report.
View this page in:
  • English

User Notes:

There are no user contributed notes for this page.