PHP curl手動指定cookie 字串

PHP curl手動指定cookie 字串

PHP curl手動指定cookie 字串

資料來源:http://expect7.pixnet.net/blog/post/44130402

 

<?php

$url=http://www.test.com.tw/test.php;
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_HEADER,false);
curl_setopt($ch, CURLOPT_COOKIE, “A=01;B=02;C=03”);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

$temp=curl_exec($ch);

//而CURLOPT_COOKIE是把變數資料串一起丟出去,就有點像我們網頁用Get的方法去傳遞一樣。但是比較不同的是
//GET:變數A=值A&變數B=值B
//CURLOPT_COOKIE:變數A=值A;變數B=值B
?>

 

 

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *