PHP:不能多次遍历mysql行

前端之家收集整理的这篇文章主要介绍了PHP:不能多次遍历mysql行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在进行分页,由于某种原因,我不能使用mysql_fetch_array多次循环结果.

//both $page and $imagesPerPage != 0
$offset = $page * $imagesPerPage
while ($row = MysqL_fetch_array($result)) {
   $total_images++;
}
echo $total_images;
//echos correct amount
$row = null;


$images_to_offset = 0;
while ($row = MysqL_fetch_array($result) && $images_to_offset < $offset) {
   $images_to_offset++;
}
echo $images_to_offset;
//echos 0... which is wrong

我应该使用不同的PHP函数获取数据库中的行数据吗?

谢谢!

最佳答案
这是错误

while ($row = MysqL_fetch_array($result)) {
   $total_images++;
}

一旦你获取了数组,数组指针就会设置到最后.

用这个

 $total_images=MysqL_num_rows($result);

$images_to_offset=MysqL_num_rows($result);

要么

要重置指针的位置使用mysql_data_seek().它会移动内部结果指针

原文链接:https://www.f2er.com/mysql/434229.html

猜你在找的MySQL相关文章