使用ssl(HTTPs)的站点:https://www.eb2a.com
1 - 我尝试使用file_get_contents获取其内容,但无效并且提供错误 例如:
<?php
$contents = file_get_contents("https://www.eb2a.com/");
echo $contents;
?>
2 - 我尝试使用fopen,但没有工作,给出错误 例如:
<?php
$url = 'https://www.eb2a.com/';
$contents = fopen($url, 'r');
echo "$contents";
?>
3 - 我尝试使用CURL,但没有工作,并提供 BLANK PAGE 例如:
function cURL($url, $ref, $header, $cookie, $p){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_REFERER, $ref);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
if ($p) {
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $p);
}
$result = curl_exec($ch);
curl_close($ch);
if ($result){
return $result;
}else{
return '';
}
}
$file = cURL('https://www.eb2a.com/','https://www.eb2a.com/',0,0,null);
echo $file
任何人都有任何想法??
答案 0 :(得分:0)
要从安全协议https
获取内容,您需要从php.ini文件启用openssl
扩展名并进行身份验证。
答案 1 :(得分:0)
网站重定向301
更改网址
来自
https://www.eb2a.com/
到
https://www.eb2a.com
,或者如果仍然无法使用或需要将其与/
一起使用看LINK
使用curl重定向规则