void Auth_HTTP::Auth_HTTP (
string
$driverDeStockage = "DB"
, mixed
$options = ""
)
Constructeur pour le système d'identification.
nom du driver de stockage qui doit être utilisé
une chaîne contenant des information d'identification ou un tableau contenant une série d'option pour le driver de stockage
This function can not be called statically.
Utilisation de differents paramètres DB
<?php
require_once "Auth/HTTP.php";
$a = new Auth_HTTP("DB", "mysql://test:test@localhost/test");
$a->start();
?>