当前位置: 代码迷 >> PHP >> 怎么用fopen()打开https的网页
  详细解决方案

怎么用fopen()打开https的网页

热度:39   发布时间:2016-04-28 22:03:52.0
如何用fopen()打开https的网页
$url="https://login.taobao.com/";
$fp=fopen($url,"r");
$fcontent=file_get_contents($url);
echo $fcontent;


这个该如何打开啊

------解决方案--------------------
你先配置 PHP 支持 OpenSSL
  相关解决方案