gpt4 book ai didi

php - 来自数组的回显值

转载 作者:搜寻专家 更新时间:2023-10-31 20:40:24 24 4
gpt4 key购买 nike

我在 wordpress 数据库上运行一个查询来计算值 'apple' 在 wp_fruit 表中出现的次数,就像这样...

$count = $wpdb->get_results("SELECT COUNT(*) as count FROM wp_fruit WHERE value='apple'" );

返回....

array(1) { [0]=> object(stdClass)#446 (1) { ["count"]=> string(3) "238" } } Array ( [0] => stdClass Object ( [count] => 238 ) ) array(1) { [0]=> object(stdClass)#445 (1) { ["count"]=> string(3) "238" } } Array ( [0] => stdClass Object ( [count] => 238 ) ) array(1) { [0]=> object(stdClass)#446 (1) { ["count"]=> string(3) "238" } } Array ( [0] => stdClass Object ( [count] => 238 ) )

我得到的值是 238,我该如何回显它?

最佳答案

$count 是一个行对象数组,在本例中只有一个:

echo $count[0]->count;

如果使用 $row 而不是 $count 可能更有意义。

echo $row[0]->count;

因此您正在访问第一行(第 0 行)的计数列(对象属性)。

关于php - 来自数组的回显值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23118266/

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