我使用以下网址在浏览器中设置Cookie
http://localhost/setc.php?userid=123&panelid=1
现在我已经使用php curl来做(在另一个脚本中编写代码),但它现在不起作用(不设置cookie)
任何这方面的专家,使用curl发现我的代码的错误是什么
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://localhost/setc.php?userid=123&panelid=1');
curl_setopt($curl, CURLOPT_COOKIE, "Cookie saved");
curl_exec($curl);
curl_close($curl);
让我知道在哪里编辑