x
 
<!DOCTYPE html>
<html>
<body>
<?php
$jsonobj = '{"Bill":35,"Elon":37,"Steve":43}';
$arr = json_decode($jsonobj, true);
echo $arr["Bill"];
echo $arr["Elon"];
echo $arr["Steve"];
?>
</body>
</html>