-3

How do I get the data under [t]?

JSON data:

enter image description here

$array=  json_decode($json);
echo "<pre>";
print_r($array[something blah blah]);
echo "</pre>"
Al.G.
  • 4,327
  • 6
  • 31
  • 56

1 Answers1

0

Either you convert the json object to an array, or access it as an object:

$json->manga[0]->t;
gmc
  • 3,910
  • 2
  • 31
  • 44