次のエラーを解決するにはどうすればよいですか?
致命的なエラー: 非オブジェクトでメンバー関数 fetch_assoc() を呼び出します...
データベース.php
protected function get_results_from_query() {
$this->open_connection();
$result = $this->conn->query($this->query);
while ($this->rows[] = $result->fetch_assoc());
$result->close();
$this->close_connection();
array_pop($this->rows);
}
usuario.php
public function getUsers(){
//$this->query variable define in class abstract database
$this->query = " SELECT * FROM Usuario LIMIT 0, 30";
$this->get_results_from_query();
}
すべてが完璧に機能していますが、呼び出すfunction getUsers
と「致命的なエラー」が発生します。