<?php
class Doi
{
private $db; //传入PDO对象.
private $auth = NULL; //Zend_Auth 对象
//使用到的公共变量
public $tbl_user = "users";
function __construct($db,Zend_Auth $auth=NULL)
$this->db = $db;
$this->auth = $auth;
}
function _create()