联系我们 |
网址:www.we0546.com邮箱:414787450@qq.com电话:4006966014地址:山东省东营市东营区西二路471号北海嘉园C座305号
|
|
|
|
|
|
|
php报 file_get_contents failed to open stream解决办法 | 来源:本站 点击数:2827次 更新时间:2018/4/4 15:36:09 |
php 报错 PHP Warning: file_get_contents failed to open stream: no suitable wrapper could be found.
一、修改php.ini
把
allow_url_fopen = Off
allow_url_include = Off
改成
allow_url_fopen = On
allow_url_include = On
重启php-fpm或者重启web服务。
如果还是无法解决的话
windows下处理方法:
c:\windows\php.ini
extension=php_openssl.dll 把前的;去掉,重启iis服务。
linux下处理方法:
/etc/php.ini
extension=php_openssl.dll 把前的;去掉,重启apache服务。
如果上面问题没能解决我的问题,我们可以如下测试。
$context = stream_context_create(array('http'=>array('ignore_errors'=>true)));
$contents = file_get_contents($url, FALSE, $context);
| 【刷新页面】【加入收藏】【打印此文】 【关闭窗口】 | 上一篇:My18全自动收款系统V8.984版发布 下一篇:北京网信、公安等部门联合约谈京东 责令全面整改 |
|
|
|