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