gpt4 book ai didi

php - 使用查询两次 mysql_fetch_array

转载 作者:IT王子 更新时间:2023-10-29 00:06:24 26 4
gpt4 key购买 nike

一个简单的

$stuff = mysql_query("SELECT * FROM users");

while($s = mysql_fetch_array($stuff)){
# ....
}

while($r = mysql_fetch_array($stuff)){
# ...
}

最后的 while() 不起作用。我曾尝试运行 foreach($stuff as $s) 但随后出现无效数组错误。

我怎样才能两次使用相同的查询?

最佳答案

$stuff = mysql_query("SELECT * FROM users");

while($s = mysql_fetch_array($stuff)){
# ....
}
// add this line
mysql_data_seek( $stuff, 0 );

while($r = mysql_fetch_array($stuff)){
# ...
}

应该做的事

另一种方法当然是将结果存储在数组中并重复使用

关于php - 使用查询两次 mysql_fetch_array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8285557/

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