如何将while循环结果转换为数组?
while ($rows = mysql_fetch_assoc($result)){
echo $rows['item'];
}
然后在下面的数组中得到结果:
$myArray = array("one", "two", "three","four","five","one","four");
答案 0 :(得分:0)
$myArray=array();
while ($rows = mysql_fetch_assoc($result)){
$myArray[]=$rows['item'];
}
print_r($myArray);
答案 1 :(得分:0)
您的问题可以通过以下方式完成,包括您是否正在寻找按推算值计数: $ y = array(); $ count = 0; while($ rows = mysql_fetch_assoc($ result)){ array_push($ y,$ rows [' item']); $ count ++; }