$stmt
execute()
メソッドを持つオブジェクトであると想定されています 。$this->db->prepare()
のようです 良い結果を返していません。
$this->db
の場合 はmysqli()
パラメータをバインドする
必要のあるオブジェクト そのように:
if ($stmt = $this->db->prepare('SELECT libelle,activite,adresse,tel,lat,lng FROM etablissements where type IN (?)')) {
$stmt->bind_param("s", $in_list);
$stmt->execute();
// ...
}