为什么stdClass的计数不正确? 正如我在这里所说的那样,回报的数量是3,但它必须是2!
$ SS:
array(2) {
[0]=>
object(stdClass)#3 (7) {
["hostname"]=> string(7) "afan008"
}
[1]=>
object(stdClass)#4 (7) {
["hostname"]=> string(6) "Kazama"
}
}
PHP:
$ss = json_decode(apiValues());
echo count((array)$ss); // 3