如何在 PHP 中利用 cURL 获取 API 响应
在 PHP 中,利用独立类使用 cURL 调用 API 并检索响应是一种常见做法。为了帮助实现这一点,这里有一个资源丰富的代码片段,可以合并到您的 PHP 类中:
$response = get_web_page("http://socialmention.com/search?q =iphone apps&f=json&t=microblogs&lang=fr");
$resArr = array();
$resArr = json_decode($response);
echo "
";<br>print_r($resArr);<br>echo "";
function get_web_page($url) {
$options = array( CURLOPT_RETURNTRANSFER => true, // Return web page CURLOPT_HEADER => false, // Exclude headers CURLOPT_FOLLOWLOCATION => true, // Follow redirects CURLOPT_MAXREDIRS => 10, // Restrict to 10 redirects CURLOPT_ENCODING => "", // Handle compressed content CURLOPT_USERAGENT => "test", // Specify the user agent CURLOPT_AUTOREFERER => true, //Automatically set referer on redirects CURLOPT_CONNECTTIMEOUT => 120, // Timeout for connections CURLOPT_TIMEOUT => 120 // Timeout for responses ); $ch = curl_init($url); curl_setopt_array($ch, $options); $content = curl_exec($ch); curl_close($ch); return $content;
}
?>
此代码片段概括了通过 cURL 与 API 交互的 PHP 类的标准功能。本质上,它接收 API URL,调用 cURL 来检索 API 响应,如有必要,将响应解析为 JSON,并以可读格式展示结果。
以上是如何使用 cURL 和 PHP 获取 API 响应:分步指南?的详细内容。更多信息请关注PHP中文网其他相关文章!