0

大家好,我正在努力在我的网站上显示天气更新。为此,我正在发送一些代码,这些代码返回给我一些类似下面的内容

stdClass Object
(
    [data] => stdClass Object
        (
            [current_condition] => Array
                (
                    [0] => stdClass Object
                        (
                            [temp_C] => 26
                            [temp_F] => 79
                        )



                )
        )
)

我想获取 [o]=>stdClass 对象下方某处的 temp_C 为此我使用了这样的语句

//$returning is variable have all the json in it
$celcius = $returning->data->current_condition->0->temp_c;

请指导我如何获取 temp_C,我目前正在使用 php。谢谢大家

4

1 回答 1

1

current_condition是一个数组

$celcius = $returning->data->current_condition[0]->temp_c;
于 2012-11-08T07:56:29.040 回答