欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

curl不使用文件存取cookie php使用curl获取cookie示例

程序员文章站 2022-06-30 09:22:57
复制代码 代码如下:/*-----保存cookie-----*/$url = 'www.xxx.com'; //url地址$post = "id=user&pwd=1234...

复制代码 代码如下:

/*-----保存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);