JSON 文件格式解析
-
JSON 文件大致说明
JSON 文件你可以理解为就是一个字典文件。
格式为
{
索引:数据,
索引:{
索引:数据,
索引:{
索引:数据,
索引:数据
}
}
}
</br>
* #### 自己写一个 my.json
```
{
"chen": {
"status":"wait"
},
"frank": {
"status":"active",
"age" : 88,
"count" : 20,
"progress":0.123,
"test" : {
"myname" : "chenfulin",
"age" : 23
}
},
"juile": {
"status":"wait"
}
}
```
</br>
* #### 自己写一个 index.php 进行解析
```c
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<?php
$string = file_get_contents("my.json");
$json_a = json_decode($string, true);
echo $json_a['chen'][status]."<br>";
echo $json_a['frank'][status]."<br>";
echo $json_a["frank"]["test"]["myname"]."<br>";
echo $json_a["frank"]["test"]["age"]."<br>";
echo "<br><br>";
foreach ( $json_a as $person_name => $person_a) {
echo $person_a['status']."<br>";
}
?>
</body>
</html>
</br>
* #### 网页显示
![](http://images2015.cnblogs.com/blog/991711/201705/991711-20170516104405525-211477930.png)
Read The Fucking Source Code