是否有可能将mysql数据存储在数组中而不必while
在php中使用循环?我这里只有 1 列。
$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循环,因为这个东西在一些代码中。