初めて JSON を使用して、これで 2 時間立ち往生しました。PHP を使用して JSON エンコードされた文字列内の特定のアイテムにアクセスしようとしていますが、問題が発生しています。
私のコード:
$json = json_encode($tweets);
$result = json_decode($json, true);
var_dump($result);
echo $result['text'];
出力
array(1) {
[0]=> array(22) {
["created_at"]=> string(30) "Sat Jul 20 15:03:15 +0000 2013"
["id"]=> int(1234567)
["id_str"]=> string(18) "1234567"
["text"]=> string(112) "we have a new billing address"
}
}
["text"] 要素のみにアクセスしたい。何か案は?ありがとう!