Q:

Write a PHP script to decode a JSON string

0

Write a PHP script to decode a JSON string.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?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"                                         
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now