使用file_get_contents(php)打开远程安全文件的问题

时间:2011-06-11 22:28:27

标签: php facebook helper

  

可能重复:
  file_get_contents() returns “failed to open stream” when hitting HTTPS

如何使用file_get_contents打开https://~网址?有可能吗?

我得到'未能打开流:〜

没有错误

1 个答案:

答案 0 :(得分:0)

我相信使用CURL更容易,因为你可以用它做更多的东西

真的很基本:

 $ch = curl_init("https://url.to/secured.file");
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 $file = curl_exec($ch);