Write a PHP script to get JSON representation of a value from an array
<?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"]"
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