0
我使用捲曲來獲取網頁的內容..當我使用瀏覽器訪問它們時,網站設置cookie ..可以使用CURL請求在請求時設置cookie嗎?
我可以使用cURL相同的方式並使用cookie向該特定網站發送請求信息...????
我使用捲曲來獲取網頁的內容..當我使用瀏覽器訪問它們時,網站設置cookie ..可以使用CURL請求在請求時設置cookie嗎?
我可以使用cURL相同的方式並使用cookie向該特定網站發送請求信息...????
以下是我發現的有關捲曲和餅乾的一些選項。
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt'); //use this cookie file
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookie.jar'); //if you close the session the cookies will be saved here
curl_setopt($ch, CURLOPT_COOKIE,"cookie_test=yes; domain=.google.com; path=/"); //set the cookie for the current session