致命錯誤:在 F:\Work Space\Site\php\video\extend\Util\data\Sysdb.php 中的非對象上調(diào)用成員函數(shù) select(),第 34 行
[1] Sysdb.php 第 34 行中的 ErrorException
在非對象上調(diào)用成員函數(shù) select()
//這里
//返回一條記錄 public function item(){
$item=Db::name($this->table)->field($this->field) ;field)->where($this->where)->find();
返回$item? $item : false ;
?}
//返回多條記錄
public functionlists(){
$query = Db::name( $this->table)->field($this->field)->where($this->where)->select(); $this->order && $query = $query->order($this->order); $lists = $query->select(); 返回$列表? $列表:假; } //自定義索引列表************************************************ public function cates($index){ $query = Db::name($this->table)->field($this->field)->where($this->where)->;選擇(); $this->order && $query = $query->order($this->order); $lists = $query->select(); /*轉(zhuǎn)儲($列表); 出口();*/############