Source Code:
(back to article)
<?php // Store JSON data in a PHP variable $json = '{"George":63"David":75,"Harold":60,"Clark":90}'; var_dump(json_decode($json, true)); ?>
Result:
Report an issue