Result Size:
625 x 571
<?php
$myObj->name =
"John"
;
$myObj->age =
30
;
$myObj->city =
"New York"
;
$myJSON = json_encode($myObj);
echo
$myJSON;
?>