I have json and I want to remove 1st attribute from it but don't know how. Here is my json:
["car",["Nissan","Chevrolet","Ford"]]
I want to show it like this:
["Nissan","Chevrolet","Ford"]
my Php
$url = 'http://example.com/json?=car';
$content = file_get_contents($url);
echo $content;