gpt4 book ai didi

php - 获取 mysql 资源字符串的第一行?

转载 作者:可可西里 更新时间:2023-10-31 22:44:44 24 4
gpt4 key购买 nike

这是我的问题。我需要数据库中的不止一行,我需要第一行来完成某些任务,然后再次遍历所有列表以创建一个记录集。

$query = "SELECT * FROM mytable";
$result = mysql_query($query);

$firstrow = //extract first row from database
//add display some field from it


while($row = mysql_fetch_assoc($result)) {
//display all of them
}

现在,如何只提取第一行?

最佳答案

使用 mysql_fetch_assoc() 不仅获取一行,还将结果集的内部指针移动到下一行。要将结果资源重置为第一行,您需要使用 mysql_data_seek()。

$query = "SELECT * FROM mytable";
$result = mysql_query($query);

$firstrow = mysql_fetch_assoc($result);

// reset the result resource
mysql_data_seek($result, 0);


while($row = mysql_fetch_assoc($result)) {
//display all of them
}

关于php - 获取 mysql 资源字符串的第一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4614613/

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