加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

PHP:不能多次遍历mysql行

发布时间:2020-12-11 23:53:18 所属栏目:MySql教程 来源:网络整理
导读:我正在进行分页,由于某种原因,我不能使用mysql_fetch_array多次循环结果. //both $page and $imagesPerPage != 0$offset = $page * $imagesPerPagewhile ($row = mysql_fetch_array($result)) { $total_images++;}echo $total_images;//echos correct amount

我正在进行分页,由于某种原因,我不能使用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().它会移动内部结果指针

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读