多表查询是写在select的 //原
public function select($join, $columns = null, $where = null){
return $this->pdo->select($this->table,$join,$columns,$where);
}
//你提供的
public function select_join($table,$join, $columns = null, $where = null){
return $this->pdo->select($table,$join,$columns,$where);
}
你的函数只是多了$table 而$table在使用Model的时候已经写到 ->table 了
|