我正在运行下面的代码,它的作用是使用 curl 获取网页。我的问题是当它获取网页时,它没有从网站获取 cookie。
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, ''.$stuff_link[0].'');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
$html = curl_exec($ch);
curl_close ( $ch );
echo $html;
我尝试了一些没有奏效的东西。