我在wordpress数据库上运行查询,以计算wp_fruit表中值'apple'的出现次数,如此...
$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,我该怎么回应呢?
答案 0 :(得分:3)
$count
是一个行对象数组,在这种情况下只有一个:
echo $count[0]->count;
如果您使用$row
代替$count
,则可能更有意义。
echo $row[0]->count;
因此,您正在访问第一行(第0行)的count列(对象属性)。