富贵资源网 Design By www.hznty.com
如题,PHP如何自动识别第三方Restful API的内容,自动渲染成 json、xml、html、serialize、csv、php等数据?
其实这也不难,因为Rest API也是基于http协议的,只要我们按照协议走,就能做到自动化识别 API 的内容,方法如下:
1、API服务端要返回明确的 http Content-Type头信息,如:
Content-Type: application/json; charset=utf-8 Content-Type: application/xml; charset=utf-8 Content-Type: text/html; charset=utf-8
2、PHP端(客户端)接收到上述头信息后,再酌情自动化处理,参考代码如下:
<"\n", trim($string)); $headings = explode(',', array_shift($rows)); foreach( $rows as $row ) { // 利用 substr 去掉 开始 与 结尾 的 " $data_fields = explode('","', trim(substr($row, 1, -1))); if (count($data_fields) === count($headings)) { $data[] = array_combine($headings, $data_fields); } } return $data; } /** * 格式化json输出 */ function _json($string) { return json_decode(trim($string), true); } /** * 反序列化输出 */ function _serialize($string) { return unserialize(trim($string)); } /** * 执行PHP脚本输出 */ function _php($string) { $string = trim($string); $populated = array(); eval("\$populated = \"$string\";"); return $populated; }
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...