fetch(PDO::FETCH_ASSOC)) { echo $row['name']; } 最佳答案-6ren">
gpt4 book ai didi

php - 未找到行时如何显示 "no results"消息?

转载 作者:行者123 更新时间:2023-11-29 08:49:44 25 4
gpt4 key购买 nike

未找到任何行时,如何显示“未找到结果”消息?

while($row = $query->fetch(PDO::FETCH_ASSOC)) 
{
echo $row['name'];
}

最佳答案

 $matched = false;
while($row = $query->fetch(PDO::FETCH_ASSOC))
{
$matched = true;
echo $row['name'];
}
if(!$matched)
echo "no any";

关于php - 未找到行时如何显示 "no results"消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11592528/

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