1

PHP は初めてです....デコードされた json ファイルから取得した配列の値にアクセスしようとしています。変数を画面に出力したところ、これが返されました...

Array ( 
[0] => stdClass Object ( 
    [period] => 0 
    [title] => Sunday 
    [fcttext] => Mostly cloudy with a chance of ...
    [pop] => 50 ) 
[1] => stdClass Object ( 
    [period] => 1 
    [title] => Sunday Night 
    [fcttext] => Partly cloudy. Low of 64F. Win.... 
    [pop] => 10 ) 
[2] => stdClass Object ( 
    [period] => 2 
    [title] => Monday 
    [fcttext] => Partly cloudy. High of 90F. Winds less than 5 mph. 
    [pop] => 10 ) 
[3] => stdClass Object ( 
    [period] => 3
    ...
    ) 
) 

たとえば、期間 1 の fcttext にアクセスするにはどうすればよいですか?

ありがとう!

4

1 に答える 1

0

クラスのメソッドとプロパティ->には、次の演算子でアクセスします。

echo $arr[1]->fcttext;

参照を確認してください- この記号はPHPで何を意味しますか? PHP の演算子の意味がわからない場合。

于 2012-07-30T01:52:15.243 に答える