那是因为您的查询中有错误。
MySQli->query()错误时将返回false。将其更改为:
$result = $this->database->query($query);if (!$result) { throw new Exception("Database Error [{$this->database->errno}] {$this->database->error}");}
如果有错误,那应该抛出异常…
欢迎分享,转载请注明来源:内存溢出
那是因为您的查询中有错误。
MySQli->query()错误时将返回false。将其更改为:
$result = $this->database->query($query);if (!$result) { throw new Exception("Database Error [{$this->database->errno}] {$this->database->error}");}
如果有错误,那应该抛出异常…
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)