PHP实现自动识别Restful API的返回内容类型
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-10 11:34:09 浏览: 评论:0
这篇文章主要介绍了PHP实现自动识别Restful API的返回内容类型,并实现自动自动渲染成 json、xml、html、serialize、csv、php等数据格式输出,需要的朋友可以参考下
如题,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端(客户端)接收到上述头信息后,再酌情自动化处理,参考代码如下:
- <?php
- // 请求初始化
- $url = 'https://www.phpfensi.com';
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
- // 返回的 http body 内容
- $response = curl_exec($ch);
- // 返回的 http header 的 Content-Type 的内容
- $contentType = curl_getinfo($ch, 'content_type');
- // 关闭请求资源
- curl_close($ch);
- // 结果自动格式输出
- $autoDetectFormats = array(
- 'application/xml' => 'xml',
- 'text/xml' => 'xml',
- 'application/json' => 'json',
- 'text/json' => 'json',
- 'text/csv' => 'csv',
- 'application/csv' => 'csv',
- 'application/vnd.php.serialized' => 'serialize'
- );
- if (strpos($contentType, ';'))
- {
- list($contentType) = explode(';', $contentType);
- }
- $contentType = trim($contentType);
- if (array_key_exists($contentType, $autoDetectFormats))
- {
- echo '_' . $autoDetectFormats[$contentType]($response);
- }
- //+++++++++++++++++++++++++++++++++++++++++++++++++++++++
- // 常用 格式化 方法
- //+++++++++++++++++++++++++++++++++++++++++++++++++++++++
- /**
- * 格式化xml输出
- */
- function _xml($string)
- {
- return $string ? (array)simplexml_load_string($string, 'SimpleXMLElement', LIBXML_NOCDATA) : array();
- }
- /**
- * 格式化csv输出
- */
- function _csv($string)
- {
- $data = array();
- $rows = explode("\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;
- }
Tags: PHP自动识别 Restful
- 上一篇:php中curl使用指南
- 下一篇:PIGCMS 如何关闭聊天机器人
相关文章
- ·PHP自动识别用户上传不雅图片并发邮箱提示(2014-08-21)
- ·PHP编写RESTful接口的方法(2021-07-10)
- ·PHP编写RESTful接口(2021-07-10)
- ·PHP中Restful api 错误提示返回值实现思路(2021-07-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)