由于json是那么的重要,因此PHP自从5.2就增加了对JSON的支持,主要包括两个函数:json_encode和json_decode。众所周知,json是一种数据的存储格式,我的博文里写过json的,在我的Javascript教程中,不明白的读者可以去搜一下。
比如我们新建一个xin.json文件,存储数据如下:
[{"name":"辛星","age":23},{"name":"小倩","age":20}]
<?php $content = file_get_contents("xin.json");$obj = json_decode($content);print_r($obj);
Array ( [0] => stdClass Object ( [name] => 辛星 [age] => 23 ) [1] => stdClass Object ( [name] => 小倩 [age] => 20 ) )
<?php $content = file_get_contents("xin.json");$obj = json_decode($content);for($i = 0;$i <count($obj);$i++){ echo "名字是:".$obj[$i]->name." 年龄是:".$obj[$i]->age."<br>";}
名字是:辛星 年龄是:23名字是:小倩 年龄是:20