setting a cookie in PHP CURL

前端 未结 3 1920
陌清茗
陌清茗 2020-12-21 01:36

Im really new to the php curl concept, can anybody show me a simple example of how to set a cookie in the browser using php curl

this is my code tha

3条回答
  •  一个人的身影
    2020-12-21 02:00

    Php Curl allows you to directly set the cookie Header, using:

    curl_setopt($curlHandle,CURLOPT_COOKIE, $cookieString);
    

    Where $cookieString holds semicolon separated key=value pairs of cookie data.

    Please refer to this question: PHP Curl and setcookie problem

    And be sure to thoroughly go through http://php.net/manual/en/function.curl-setopt.php

提交回复
热议问题