可能重复:
Fatal error: Call to a member function fetch_assoc() on a non-object
我有以下代码:
$this->open_connection();
$result = $this->connection->query($this->query);
while($this->rows[] = $result->fetch_assoc()){}
$result->close();
$this->close_connection();
array_pop($this->rows);
在localhost上运行此代码,不会给我任何问题,我返回了查询的值。但是当从服务器运行时发送给我以下错误:
Fatal error: Call to a member function fetch_assoc() on a non-object in /home/code..on line 36
我已经阅读了几篇出版物,但我没有设法解决这个小问题。 感谢您的贡献。