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