gpt4 book ai didi

php - MySQL 查询只抓取一行而不是多行。为什么?

转载 作者:太空宇宙 更新时间:2023-11-03 10:22:20 27 4
gpt4 key购买 nike

我试图通过这些行从 MySQL 数据库中获取多行:

$msg_sql = "SELECT * FROM ".TABLE_PREFIX."quotes ORDER BY rand(curdate()) LIMIT 3";
$msg_res = mysqli_fetch_assoc(mysqli_query($link, $msg_sql));
print_r($msg_res);

但是,我只返回 1 行。即:

Array ( [id] => 1 [message] => test_message [Link] => link here ) 

我希望得到多行(所以有多个 ID)

请告诉我我做错了什么。我还是 MySQL 的新手。

最佳答案

您必须为获取的每一行循环一次。

$result = mysqli_query($link, $msg_sql);
while ($item = mysqli_fetch_assoc($result)) {
print_r($item);
}

关于php - MySQL 查询只抓取一行而不是多行。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10094943/

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