PHP 5.2以上版本自带解析JSON的函数——json_decode()。
使用范例:
$data = file_get_contents('www.a.com/data.json'); // 获取JSON数据到字符串
$result = json_decode($data,true); // 将获取到的JSON数据解析成数组
私人Tech网摘—265.me
PHP 5.2以上版本自带解析JSON的函数——json_decode()。
使用范例:
$data = file_get_contents('www.a.com/data.json'); // 获取JSON数据到字符串
$result = json_decode($data,true); // 将获取到的JSON数据解析成数组