


PHP implements automatic identification of the return content type of Restful API
如题,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 = 'http://www.php.cn'; $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; }
更多PHP实现自动识别Restful API的返回内容类型相关文章请关注PHP中文网!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
