我想創建一個函數,它返回數組中mysqli查詢的所有結果。只有mysqli fetch assoc只返回結果的一半
function Get(){
// verification... verification...
$res = $this -> link -> query("SELECT " . $select . " FROM " . $from);
while ($res->fetch_assoc())
{
$row[] = $res->fetch_assoc();
}
return $row;
}
i = 0;
var_dump(Get());
的同時回報1,3,5,7,9導致
有人能解釋的結果呢?