Write a PHP script to decode a JSON string.
<?php $json = '{ "uglify-js": "1.3.4" , "jshint": "0.9.1" , "recess": "1.1.8" , "connect": "2.1.3" , "hogan.js": "2.0.0" }'; var_dump(json_decode($json)); echo "\n"; var_dump(json_decode($json, true)); ?>
Sample Output:
object(stdClass)#1 (5) { ["uglify-js"]=> string(5) "1.3.4" ["jshint"]=> string(5) "0.9.1" ["recess"]=> string(5) "1.1.8" ["connect"]=> string(5) "2.1.3" ["hogan.js"]=> string(5) "2.0.0" } array(5) { ["uglify-js"]=> string(5) "1.3.4" ["jshint"]=> string(5) "0.9.1" ["recess"]=> string(5) "1.1.8" ["connect"]=> string(5) "2.1.3" ["hogan.js"]=> string(5) "2.0.0" }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer