Source Code:
(back to article)
<?php $json = '{"name":"John", "age":30, "city":"New York"}'; $object = json_decode($json, false); print_r($object); ?>
Result:
Report an issue