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 に答える