Answers for "read json content php from link"

PHP
3

read json file data using php

$filedata = file_get_contents('filename.json');
$details = json_decode($filedata);
print_r($details);
Posted by: Guest on July-19-2021
0

php display json in browser

header('Content-Type: application/json');
Posted by: Guest on September-19-2021

Browse Popular Code Answers by Language