解决 PHP file_get_contents() “HTTP 请求失败”错误
当尝试使用 file_get_contents() 从指定 URL 检索内容时,用户可能会遇到错误:“警告:file-get-contents() 无法打开流:HTTP 请求失败! HTTP/1.1 202 已接受。”当 HTTP 请求无法成功执行时,就会出现此错误。
要解决此问题,另一种方法是使用 cURL 扩展。 cURL 可以更好地控制 HTTP 请求,并允许其他配置选项。以下是使用 cURL 的修改后的代码片段:
<?php $curl_handle = curl_init(); curl_setopt($curl_handle, CURLOPT_URL, 'http://###.##.##.##/mp/get?mpsrc=http://mybucket.s3.amazonaws.com/11111.mpg&mpaction=convert format=flv'); curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2); curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Your application name'); $query = curl_exec($curl_handle); curl_close($curl_handle); ?>
在此修改后的版本中,我们利用 cURL 函数来发起 HTTP 请求。我们定义一个curl句柄并设置各种选项:
通过利用 cURL,我们更好地控制 HTTP 请求,可以有效解决 file_get_contents() 遇到的“HTTP request failed”错误。
以上是为什么 file_get_contents() 失败以及 cURL 如何修复'HTTP 请求失败”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!