当前位置:Gxlcms > PHP教程 > 怎么用fopen()打开https的网页

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

时间:2021-07-01 10:21:17 帮助过:21人阅读

如何用fopen()打开https的网页
$url="https://login.taobao.com/";
$fp=fopen($url,"r");
$fcontent=file_get_contents($url);
echo $fcontent;


这个该如何打开啊


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

人气教程排行