您的位置:首页技术文章
文章详情页

file_get_contents携带cookie获取数据部署到服务器失效

【字号: 日期:2022-06-02 10:01:56浏览:28作者:猪猪

问题描述

$url = 'https://www.ssldun.cn/clientarea.php?action=productdetails&id=2&modop=custom&a=DownloadCert';$con = 'WHMCSy551iLvnhYt7=382h2f4u8eo25oiovc9p2ffsu3';$rand = rand(10000,99999);//随机数$filename= time().$rand.'.zip';//发送请求获取压缩包名称 需要删除//发送带有cookie的请求获取压缩包内容$opts = array('http' => array('header'=> 'Cookie:'.@$con.''));$context = stream_context_create($opts);$contents = file_get_contents($url, false, $context);var_dump($contents);

就是这段代码部署到服务器上总是获取不到文件

问题解答

回答1:

返回结果是什么,有报错信息吗

相关文章: