gpt4 book ai didi

php - 从数据库中查找数据的计数

转载 作者:行者123 更新时间:2023-11-30 22:41:08 24 4
gpt4 key购买 nike

我想从数据库中找到某些项目的数量。我使用了这段代码

$sql=" SELECT count(*) from request WHERE status = '0'";
$result = mysqli_query($con, $sql);
if(mysqli_num_rows($result)>0)
{
while($row = mysqli_fetch_assoc($result))
{
echo "<pre>";
print_r($row);
echo "</pre>";

}
}

我在一行中得到这个数组

Array
(
[count(1)] => 1
)

为了从这个数组中获取值,我使用了

$total = $row[0];
echo $total;

但没有得到任何结果。我怎样才能从这个数组中获取值

最佳答案

你需要使用:

$row = mysqli_fetch_row($result);
echo $row[0];

或将您的查询更改为:

$sql=" SELECT count(*) as `num` from request WHERE status = '0'";

并使用:

$row = mysqli_fetch_assoc($result));
echo $row['num'];

关于php - 从数据库中查找数据的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31132091/

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