Logo

Programming-Idioms

History of Idiom 91 > diff from v20 to v21

Edit summary for version 21 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 20

2018-08-03, 20:52:02

Version 21

2018-09-04, 19:00:17

Idiom #91 Load JSON file into struct

Read from file data.json and write its content into object x.
Assume the JSON data is suitable for the type of x.

Idiom #91 Load JSON file into struct

Read from file data.json and write its content into object x.
Assume the JSON data is suitable for the type of x.

Code
$x = json_decode(file_get_contents('data.json'));
Doc URL
https://secure.php.net/manual/en/function.json-decode.php