时间:2021-07-01 10:21:17 帮助过:42人阅读
/**
+----------------------
* SQL查询
+----------------------
* @access public
+----------------------
* @param mixed $sql SQL指令
* @param boolean $parse 是否需要解析SQL
+----------------------
* @return mixed
+----------------------
*/
public function query($sql,$parse=false) {
$sql = $this->parseSql($sql,$parse);
return $this->db->query($sql);
}