Answers for "php json decode and print"

PHP
7

php decode json file

$json = json_decode(file_get_contents('/path/to/your/file.json'));
Posted by: Guest on March-15-2020
0

php decode json object

<?php

$json = '{"firstName":"Peter","lastName:":"Silva","age":23}';

$personInfo = json_decode(json);

echo $personInfo->age;

?>
Posted by: Guest on October-22-2020

Browse Popular Code Answers by Language