<html>
<head>
<meta charset="UTF-8">
<title>JSON Use</title>
</head>
<body>
<?php
$json = '{"apple":"Fruits", "1":1, "참":true}';
var_dump(json_decode($json, true));
?>
</body>
</html>