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