注意mysqli_query()的参数, 第一个参数为连接, 第二个参数是查询
mysqli_query(mysqli $link, string $query, int $resultmode = MYSQLI_STORE_RESULT): mixed
这是错误的写法
public function query($sql) {
$res = mysqli_query($sql, $this->conn);
if(!$res){
$this->error(mysqli_error()."\r\n错误的sql语句".$sql);
}
$this->WriteLog($sql);
return $res;
}
tmd忘记加了一个感叹号, 导致一直报错
if (!$this->conn) {
$err = new Exception('连接失败');
$this->error($err);
throw $err;
}
标签:err,mysqli,error,报错,sql,query
From: https://www.cnblogs.com/zhengel/p/16610649.html