void File_HtAccess::delRequire (
string $require
)
Remove a value (user) from require property. Using this method you can control which users will be able to access the protected resources.
string $require
- value (user) to be added
to require property.
void
This function can not be called statically.
Using File_HtAccess::delRequire()
<?php
require_once('File/HtAccess.php');
/* remove user viemero from list of users to be granted access */
$fh = new File_HtAccess('.htaccess');
$fh->load();
$fh->delRequire('viemero');
$fh->save();
?>