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 にアクセスするにはどうすればよいですか?
ありがとう!