Rumah  >  Artikel  >  pembangunan bahagian belakang  >  php 从Header中获取cookie_PHP教程

php 从Header中获取cookie_PHP教程

WBOY
WBOYasal
2016-07-13 10:02:381768semak imbas

php 从Header中获取cookie

/*-----保存COOKIE-----*/
$url = 'www.xxx.com'; //url地址
$post = "id=user&pwd=123456"; //POST数据
$ch = curl_init($url); //初始化
curl_setopt($ch,CURLOPT_HEADER,1); //将头文件的信息作为数据流输出
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); //返回获取的输出文本流
curl_setopt($ch,CURLOPT_POSTFIELDS,$post); //发送POST数据
$content = curl_exec($ch); //执行curl并赋值给$content
preg_match('/Set-Cookie:(.*);/iU',$content,$str); //正则匹配
$cookie = $str[1]; //获得COOKIE(SESSIONID)
curl_close($ch); //关闭curl
/*-----使用COOKIE-----*/
curl_setopt($ch,CURLOPT_COOKIE,$cookie);


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/969605.htmlTechArticlephp 从Header中获取cookie /*-----保存COOKIE-----*/$url = www.xxx.com; //url地址$post = "id=userpwd=123456"; //POST数据$ch = curl_init($url); //初始化curl_setopt($ch,CUR...
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn