Heim >Backend-Entwicklung >PHP-Tutorial > PHP模拟登陆网站出现对话超时

PHP模拟登陆网站出现对话超时

WBOY
WBOYOriginal
2016-06-13 12:39:261274Durchsuche

PHP模拟登陆网站出现会话超时

<?php<br />
<br />
<br />
        $url="http://60.219.165.24/loginAction.do";<br />
        $ch = curl_init();<br />
        curl_setopt($ch, CURLOPT_URL, $url);<br />
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
	curl_setopt($ch, CURLOPT_HEADER, 0); <br />
	curl_setopt($ch, CURLOPT_POST, 1);<br />
	$curlPost="postdata";<br />
	curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost); <br />
<br />
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
<br />
         curl_setopt($ch, CURLOPT_UNRESTRICTED_AUTH, 1);<br />
<br />
         $output = curl_exec($ch);<br />
         curl_close($ch);<br />
$home_url = 'http://60.219.165.24/gradeLnAllAction.do?type=ln&oper=fainfo&fajhh=2615';<br />
	  header('Location: '.$home_url);<br />
<br />
<br />
?><br />

传入了正确的登陆名称和密码之后却无法访问下一页面。提示“会话超时".

抓包如上图

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn