我在php
中写了一个方法
当我使用它时,我遇到了这个错误
注意:尝试在第28行获取非对象的属性
public function query($sql){
$result= $this->connection->query($sql);
$records=array();
if($result->num_rows==0){ //line 28
return null;
}
while($row=$result->fetch_assoc()){
$records[]=$row;
}
return($records);
}