Devs.tw 是讓工程師寫筆記、網誌的平台。歡迎您隨手紀錄、寫作,方便日後搜尋!
this is stateless request:
$client = new \GuzzleHttp\Client();
$res = $client->request('GET', $url);
this is stateful request:
$client = new \GuzzleHttp\Client();
$cookieJar = new \GuzzleHttp\Cookie\CookieJar();
$res = $client->request('GET', $url, ['cookies' => $cookieJar]);
指定 cookiejar 即可啟用 cookie
問:在沒指定檔案路徑的情況下,guzzlehttp 是如何存取的?是存在一個檔案?存在一個變數?
若是用 curl 發送 request,啟用 cookie 要指定檔案吧?
https://blog.longwin.com.tw/2014/05/php-curl-set-cookie-2014/
使用 guzzle 就不用?