function &_factory($driver, $options = '')
{
$storage_class = 'Auth_Container_' . $driver;
include_once 'Auth/Container/' . $driver . '.php';
$obj = new $storage_class($options);
return $obj;
}
Authクラスのコンストラクタを確認
//この記事は編集中です。