File_HtAccess::addRequire() -- add a value into require property
Beschrijving
Adds a value (user) into require property. Using this method you can
control which users will be able to access the protected resources.
Note
Deze functie kan niet statisch worden aangeroepen.
Voorbeeld
Voorbeeld 39-1. Using File_HtAccess::addRequire() <?php
require_once('File/HtAccess.php');
/* add user tuupola to list of users to be granted access */
$fh = new File_HtAccess('.htaccess');
$fh->load();
$fh->addRequire('tuupola');
$fh->save();
?> |
|