• 코드:
​x
 
1
<html>
2
<head>
3
    <meta charset="UTF-8">
4
    <title>JSON Use</title>      
5
</head>
6
​
7
<body>
8
​
9
<?php
10
    $json = '{"apple":"Fruits", "1":1, "참":true}';
11
    var_dump(json_decode($json, true));
12
?>
13
​
14
</body>
15
​
16
</html>