我使用“PHP简单的HTML DOM解析器”来解析从游戏ASP网站的数据。 所以我需要的东西,我登录到网站之前开始使用它,我需要获取数据只对注册用户可见。 有人建议我一个剧本什么的,它可以做到这一点? 非常感谢提前!
Answer 1:
首先,你应该张贴有:
<?php
function do_post_request($url, $data, $optional_headers = null)
{
$params = array('http' => array(
'method' => 'POST',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
throw new Exception("Problem with $url, $php_errormsg");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url, $php_errormsg");
}
return $response;
}
这应该是能够发送POST请求。 在这之后,你应该能够抓住你所需要的。
文章来源: Login to ASP website before using PHP Simple HTML DOM Parser