I have this data in the html source.
<script type="application/ld+json">
[{"@context:":"http://schema.org","@type":"Movie","name":"My First Movie"}]
</script>
Now i want to parse from this json data like type, movie using simple_html_dom php library. I have gone upto
$des = $html->find('script', 1)->innertext;
$desDecode = json_decode($des);
Using this I got [{"@context:":"http://schema.org","@type":"Movie","name":"My First Movie"}]
But after this I am confused how to get value like Movie or name. I cant find the json object name here from where I can start. Please give some light on this.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…