Home  >  Article  >  Backend Development  >  php 从Header中获取cookie_PHP教程

php 从Header中获取cookie_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:02:381742browse

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...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn