通过一段时间的声明循环

时间:2010-03-12 17:41:19

标签: php loops while-loop

我有一系列mysql查询结果资源存储在数组中。

E.G array([0] => resource [1] => resource ... ect);

此代码检索数组中的第一个资源:

$third_count = "0";
while ($user_result = mysql_fetch_array($user[$third_count])) {
print_r($user_result);
}
$third_count = $third_count +1;

我只是试图找到一个if语句,它将循环通过数组。

类似于:while($ third_count =< $ second_count)是我需要的,但它似乎不起作用。

其中$ second count是数组中元素的数量。

感谢指点!

1 个答案:

答案 0 :(得分:1)

您要做的是使用foreach循环来遍历该结果资源数组。计数无关紧要。

foreach($resourcearr as $res) {
    while ($user_result = mysql_fetch_array($res)) {
        print_r($user_result);
    }
}