其他分享
首页 > 其他分享> > 报错file_get_contents(): SSL operation failed with code 1

报错file_get_contents(): SSL operation failed with code 1

作者:互联网

报错内容

file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages:\nerror:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed

这和本地环境有关,是否开启了ssl验证。

解决方法

一: file_get_contents 增加参数传递指定

亲测有效

$stream_opts = [
    "ssl" => [
        "verify_peer"=>false,
        "verify_peer_name"=>false,
    ]
];  
 
$response = file_get_contents($url, false, stream_context_create($stream_opts));

二:公共文件通过 stream_context_get_default 函数指定 

亲测有效

三:修改php.ini配置文件

测试后,未解决实际问题。。

打开php.ini文件,extension=php_openssl.dll去掉前面的分号,allow_url_include = off改为allow_url_include = On,然后重启服务就可以了。

 

标签:code,false,stream,get,verify,failed,报错,file,contents
来源: https://www.cnblogs.com/wanghaokun/p/16389151.html