PHP实现解析xml为数组方法
PHP实现解析xml为数组简单方法<?php
$xml_data=file_get_contents("xml地址或xml数据");
$xml =simplexml_load_string($xml_data);
$xm...
天气预报官方josn接口
http://wthrcdn.etouch.cn/weather_mini?city=(输入需要查询的地区名称)例如;http://wthrcdn.etouch.cn/weather_mini?city=广州输入查询后将返回josn...
让Json更懂中文(JSON_UNESCAPED_UNICODE)
php格式化json的函数json_encode($value,$options)其中有2个比较常用到的参数JSON_UNESCAPED_UNICODE(中文不转为unicode ,对应的数字 256)JSON_UNESCAPED_...