Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17138 программистов и 1834 робота. Сейчас ищут 1634 программиста ...
Auth_HTTP::Auth_HTTP()
Вернуться к: Auth_HTTP
Auth_HTTP::Auth_HTTP()
Auth_HTTP::Auth_HTTP() – constructor
Synopsis
void Auth_HTTP::Auth_HTTP ( string $storageDriver = "DB" , mixed $options = "" )
Constructor for the authentication system
Parameter
- string $storageDriver
-
name of the storage driver that should be used
- mixed $options
-
a string containing some login information or an array containing a bunch of options for the storage driver
Note
This function can not be called statically.
Example
Using different DB parameters
<?php
require_once "Auth/HTTP.php";
$a = new Auth_HTTP("DB", "mysql://test:test@localhost/test");
$a->start();
?>
Вернуться к: Auth_HTTP