方法一:
Warning: file_get_contents() [function.file-get-contents]: Failed to open stream: Invalid argument in I:WebmyPHPa.PHP on line 16
打开PHP.ini文件找到 ;extension=PHP_openssl.dll ,去掉双引号”;” ,重启web服务器即可。
apache服务器的话,可以同时启用mod_ssl模块测试。
代码示例:
PHP;">
PHP
//file_get_contents抓取https地址内容
function getCurl($url){
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);
$result = curl_exec($ch);
curl_close ($ch);
return $result;
}
方法二:
在PHP中,利用file_get_contents函数抓取url是https开头的网站网页内容时,会出现类似下面的错误警告:
Warning: file_get_contents(PHP">https://127.0.0.1/index.PHP) [function.file-get-contents]: Failed to open stream: Invalid argument in E:\website\blog\test.PHP on line 25
打开PHP.ini找到 ;extension=PHP_openssl.dll ,去掉双引号”;” ,重启web服务器即可。
apache的可以同时启用mod_ssl模块测试
以上内容给大家分享了两种方法解决PHP中file_get_contents函数抓取https地址出错,希望对大家有所帮助。
原文链接:https://www.f2er.com/php/21215.html