Auth_HTTP::Auth_HTTP()

Auth_HTTP::Auth_HTTP() – コンストラクタ

Synopsis

void Auth_HTTP::Auth_HTTP ( string $storageDriver = "DB" , mixed $options = "" )

Description

認証システムのコンストラクタ

Parameter

string $storageDriver

使用するストレージドライバの名称

mixed $options

ログイン情報に関する文字列、 もしくはストレージドライ版のオプションの配列

Note

This function can not be called statically.

Example

DBパラメータの使用

<?php
require_once "Auth/HTTP.php";

$a = new Auth_HTTP("DB""mysql://test:test@localhost/test");

$a->start();
?>