可能重复:
file_get_contents() returns “failed to open stream” when hitting HTTPS
如何使用file_get_contents打开https://~网址?有可能吗?
我得到'未能打开流:〜
没有错误答案 0 :(得分:0)
我相信使用CURL更容易,因为你可以用它做更多的东西
真的很基本:
$ch = curl_init("https://url.to/secured.file");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$file = curl_exec($ch);