Loading...
<?php $data = file_get_contents('请求json'); // 获取数据 $arr = json_decode($data, true); // 将获取到的 JSON 数据解析成数组 echo $arr['text']; //将输出Not Found echo $arr['ip']; //将输出 123.123.123.123 // 输出数组中...