Q:

Write a PHP script to get JSON representation of a value from an array

0

Write a PHP script to get JSON representation of a value from an array

All Answers

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

<?php
$arra = array("uglify-js"=> "1.3.4", "jshint"=> "0.9.1", "recess"=> "1.1.8" ,"connect"=> "2.1.3", "hogan.js"=>"2.0.0"); 
$myarray = array('red', 'green', 'white');
var_dump(json_encode($arra));
echo "\n";
var_dump(json_encode($myarray));
?>

Sample Output:

string(92) "{"uglify-js":"1.3.4","jshint":"0.9.1","recess":"
1.1.8","connect":"2.1.3","hogan.js":"2.0.0"}"               
                                                            
string(23) "["red","green","white"]"

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