你能告诉我为什么这只返回我的查询的最后一行吗?正如你所看到的,我正在提取作为标准类。此外,我已经尝试了不同的方法,例如在内部使用foreach key=>值,但它没有帮助。我无法正确填充$out。
class myclass {
function Query($sql){
$results = $this->db->query($sql);
if (mysqli_num_rows($results)<1){
throw new Exception('NoResults');
}
$out = new stdClass;
while ($r = $results->fetch_object()){
$out = $r;
}
return $out;
$out = null;
}
}
}
---------------
$client = new myclass;
$sql = "SELECT * FROM books";
$q = $client->Query($sql);
print_r($q);
精慕HU
慕勒3428872
莫回无