以下は、アクセスしたいサンプルのjsonコードです...このjsonは実際にはAPIから来ています。json全体をコピーしてjson lintに貼り付けるたびに..有効なjsonと表示されます..
foreach ($movies as $movie) {
echo "theaters ".var_dump($movie->release_dates->theater)";
}
//Im actually trying to access a nested json in php... Something like
{
"movies":[{
"tile":"Cowboys";
"release_dates":{"theater":"2013-11-29"},
so on....
上記を書き込もうとするとエラーが発生しますObject of stdclass cannot be converted to string
....または、
$x = json_decode(var_dump($movie->release_dates->theater), true)";
echo "theaters "$x[0];
次のような出力が得られstring[10]:2013-11-25 string[10]:2013-11-30
ます....そうです..エラーは何ですか....