I am having an issue dealing with the notation used in a JSON file I am trying parse. Some of the nodes have . (periods) in the names which escapes object-notation
($json = $article->rssFeed.url;)
How would I go about selecting the nodes. Do I need to str_replace the .(periods), or is there some other notation I can use? Here is a snippet of the JSON:
"docs": [{"rssFeed.type": "news", "rssFeed.url": "http://www.example.com/", "score": 1.0 }]