gpt4 book ai didi

php - 如何使用 mysql_* 函数多次循环遍历 MySQL 结果集?

转载 作者:IT老高 更新时间:2023-10-28 12:04:32 24 4
gpt4 key购买 nike

无论出于何种原因,我都需要检查 MySQL 结果集两次。有办法吗?

我不想运行两次查询,也不想重写脚本,以便将行存储在某处,然后在以后重复使用。

最佳答案

你可以这样做:

$result = mysql_query(/* Your query */);
while($row = mysql_fetch_assoc($result)){
// do whatever here...
}

// set the pointer back to the beginning
mysql_data_seek($result, 0);
while($row = mysql_fetch_assoc($result)){
// do whatever here...
}

但是,我不得不说,这似乎不是处理这个问题的正确方法。为什么不在第一个循环中进行处理?

关于php - 如何使用 mysql_* 函数多次循环遍历 MySQL 结果集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6439230/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com