是否可以將mysql數據存儲在數組中,而無需在php中使用while
循環? 我只有1列在這裏。將mysql數據存儲在數組中
$members = $conn->prepare(Select id from members where state = 'CA');
$members->execute();
//Result ->1, 2, 3, 4, 5, 6, 7, 8, 9
//$myarray = array of the above results.
$myarray = array(1, 2, 3, 4, 5, 6, 7, 8, 9)//Has to be this kind of array.
我試圖避免另一個while循環這裏,因爲這個東西進去一些代碼。
即使你發現某些構造不會'show'你一個循環,它仍然會必須循環遍歷所有行才能獲取數據:因此,我認爲它無用,試圖避免它 –
如果您的輸出將只在一行中,這裏不需要while循環 – cartina
@cartina所以,下面的答案是唯一的方法來做到這一點?或者你有更好的方法? – jmenezes