回复详情

admin

2017-1-1 0

多表查询是写在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 了

加载更多

登陆后才可发表内容