标签: php cookies
我想在我的免费托管服务器(使用PHP脚本/ ftp或任何其他方式)下载文件in this link ,但此链接需要仅在我的浏览器上使用的cookie值... 并且可以在PHP脚本中插入外部网站的cookie值
答案 0 :(得分:1)
您可以使用php_curl:
http://www.php.net/manual/de/book.curl.php
curl_setopt($ch, CURLOPT_COOKIE, "name=value; other=value");