80.01.PEAR Auth

ユーザ認証では良く使うPEARのAuthを使ってみます。
手元で、Authの環境で用意。
まずは、XAMPPのデフォだと下記エラーがでるので、修正。
Deprecated: Assigning the return value of new by reference is deprecated in D:\xampp\php\PEAR\Auth.php on line 469 私はDドライブに入れたので( =& を = に直す。
    function &_factory($driver, $options = '')
    {
        $storage_class = 'Auth_Container_' . $driver;
        include_once 'Auth/Container/' . $driver . '.php';
        $obj = new $storage_class($options);
        return $obj;
    }
Authクラスのコンストラクタを確認 //この記事は編集中です。