Wie setze ich in PHP ein Cookie für eine Curl Abfrage?
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://example.com/example.pdf'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch);
Mit der Option CURLOPT_COOKIE kannst du Cookies setzen.
$cookie = 'CookieName=CookieValue'; curl_setopt($ch, CURLOPT_COOKIE, $cookie);