推荐操作系统:windows7系统、PHP5.6、DELL G3电脑
1、解析说明
PHP具有内置函数解码JSON数据,这个功能是json_decode()函数。注:这个函数只适用于UTF-8代码的字符串数据。
2、语法
mixed json_decode ($json_string [,$assoc = false [, $depth = 512 [, $options = 0 ]]])
3、参数
json_string
assoc
depth
options
4、实例
<?php $data = file_get_contents('https://www.lylme.com/404.json'); // 获取数据 $arr = json_decode($data, true); // 将获取到的 JSON 数据解析成数组 echo $arr['text']; //将输出Not Found echo $arr['ip']; //将输出 123.123.123.123 // 输出数组中的 “text” 值(也就是之前 JSON 中的“text”键值中的内容,"ip" 值也同理) ?>
在我们使用编程语言的时候,对于数据的格式会出现不能直接使用的情况,所以就会有解析的操作。在php中有专门解析json的函数,那就是json_decode()。
以上就是php解析json数据的方法,在我们对json_decode()函数有了认识后,就可以对json数据进行解析了。更多php学习指路:php教程