file_get_contents(url): failed to open stream的解决方案_PHP教程

php中文网
发布: 2016-07-14 10:07:30
原创
2575人浏览过

www.2cto.com:摘自英文网站

提问者:

Hello Everyone;
 
I am having a php file that gets the contents from a URL, i am getting the failure message 
 
 Collapse | Copy CodeWarning: file_get_contents(http://xxxxxx): failed to open stream: HTTP request failed! in xxxx.php on line xx 
i tried so many online solutions but its still not working. here is the code
 
 Collapse | Copy Code            $cryptpass = rawurlencode(crypt($pc['pcpassword']));
            $url = "http://" . $pc['pcname']."/Reports/ReportList.php?&username={$pc['pcusername']}&cryptpass=$cryptpass&noredir=1";
            $parsed_list = read_general_list($url, false); 
 Collapse | Copy Codefunction read_general_list($url, $make_assoc = false)
    {
        $compressed_data = file_get_contents($url);
    }
 
 
 
$compressed_data is always null and it throws an error:
 
Warning: file_get_contents(http://xxxxxx): failed to open stream: HTTP request failed! in xxxx.php on line xx
 
Any suggestions please? 

答复:

I am sorry, i never updated this question completely. May be if some one is still looking for an answer.
 
This has worked for me. This is the equivalent function for File_get_contents, but can handle large amount of data. I found this solution online.
 
 Collapse | Copy Code      function file_get_contents_curl($url) {
      $ch = curl_init();
      curl_setopt($ch, CURLOPT_HEADER, 0);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser.
      curl_setopt($ch, CURLOPT_URL, $url);
      $data = curl_exec($ch);
      curl_close($ch);
      return $data;
      }
 
第二个解答:
 
As the error message says, the stream (URL) requested cannot be opened. There are many possible reasons for this:
1. base URL is bad. $pc['pcname']
2. username and/or password are bad
3. username/password do not have permission on the server
4. Your system cannot reach the server (firewall, PHP permissions, ...)
4. ...
 
I would use the following strategy to debug:
1. Dump $url and write it down.
2. Use a browser with debug tools (eg Firefox/Firebug) and try to access that URL.
3. Look at the headers returned to see what error the server reports (if any).
4. Think about why that error is returned...
 
Cheers,
Peter
 
If this answers your question, vote and mark it accepted.

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477853.htmlTechArticlewww.2cto.com:摘自英文网站 提问者: Hello Everyone; I am having a php file that gets the contents from a URL, i am getting the failure message Collapse | Copy CodeWarning...
相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门推荐
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号