需要准备的材料分别是:电脑、php编辑器、浏览器。
1、首先,打开php编辑器,新建php文件,例如:index.php,填充问题基础代码。
2、在index.php中,输入代码:
$b = json_decode($a);
echo $b->content->location->lat;
echo ',';
echo $b->content->location->lng;
3、浏览器运行index.php页面,此时lng和lat的值都被打印了出来。