php模拟post模式打开页面
程序员文章站
2024-01-12 15:40:04
...
php模拟post方式打开页面
我登录了后台,想在后台模拟用post方式跳转到另一个页面并处理这些数据,可是总是弹出叫我重新登录的提示,我估计是模拟post方式跳转时,已经失去了$_SESSION值。请问该怎么处理这种情况?
代码如下:
$post_string='detail=addaction&subva=0&name=testadmin&password=123456&sex=1'
$context = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded\r\nUser-Agent : Jimmy\'s POST Example beta\r\nContent-length:'.strlen($post_string)+8,
'content' => 'mypost='.$post_string
)
);
$stream_context = stream_context_create($context);
$data = file_get_contents("http://xxxxxxxx/xxxx/main.php", false, $stream_context);
echo $data;
------解决方案--------------------
1)先POST数据到到登陆画面
2)返回的结果里会有一个Cookie:SessionID=xxxxxxxxxxxx
3) 取出SessionID,然后按照你上面的方式POST
'header' => 'Content-type: application/x-www-form-urlencoded\r\nUser-Agent : Jimmy\'s POST Example beta\r\nContent-length:'.strlen($post_string)+8,
'header' => 'Cookie: SessionID=xxxxxxxxx;Content-type: application/x-www-form-urlencoded\r\nUser-Agent : Jimmy\'s POST Example beta\r\nContent-length:'.strlen($post_string)+8,
Cookie的格式记不大清楚,以上只是Sample.
我登录了后台,想在后台模拟用post方式跳转到另一个页面并处理这些数据,可是总是弹出叫我重新登录的提示,我估计是模拟post方式跳转时,已经失去了$_SESSION值。请问该怎么处理这种情况?
代码如下:
$post_string='detail=addaction&subva=0&name=testadmin&password=123456&sex=1'
$context = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded\r\nUser-Agent : Jimmy\'s POST Example beta\r\nContent-length:'.strlen($post_string)+8,
'content' => 'mypost='.$post_string
)
);
$stream_context = stream_context_create($context);
$data = file_get_contents("http://xxxxxxxx/xxxx/main.php", false, $stream_context);
echo $data;
------解决方案--------------------
1)先POST数据到到登陆画面
2)返回的结果里会有一个Cookie:SessionID=xxxxxxxxxxxx
3) 取出SessionID,然后按照你上面的方式POST
'header' => 'Content-type: application/x-www-form-urlencoded\r\nUser-Agent : Jimmy\'s POST Example beta\r\nContent-length:'.strlen($post_string)+8,
'header' => 'Cookie: SessionID=xxxxxxxxx;Content-type: application/x-www-form-urlencoded\r\nUser-Agent : Jimmy\'s POST Example beta\r\nContent-length:'.strlen($post_string)+8,
Cookie的格式记不大清楚,以上只是Sample.
相关文章
相关视频
上一篇: mpv2 mp4录制
下一篇: hadoop 2.0 参数调优小结
推荐阅读
-
php curl模拟post请求简单示例
-
php判断页面是否是微信打开的示例(微信打开网页)
-
php实现模拟post请求用法实例,phppost用法实例
-
通过curl模拟Post数据到页面后提示验证码错误,求觖求
-
请问一个php的表单post数组的有关问题,php页面接收不到数组的值
-
【求助】php使用curl模拟post提交数据获取目标网站信息,求解?
-
javascript-怎样在一个新窗口里打开本php页面中的一个函数写成的html页面
-
php 模拟POST|GET操作实现代码_php技巧
-
PHP CURL模拟登录新浪微博抓取页面内容 基于EaglePHP框架开发_PHP教程
-
php curl模拟post提交数据示例