将while循环结果转换为数组

时间:2015-05-26 08:39:09

标签: php arrays

如何将while循环结果转换为数组?

while ($rows = mysql_fetch_assoc($result)){
  echo $rows['item']; 
}

然后在下面的数组中得到结果:

$myArray = array("one", "two", "three","four","five","one","four");

2 个答案:

答案 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 ++;     }