「PHP Simple HTML DOM Parser」を使用して、ゲーム ASP Web サイトからのデータを解析しています。取得する必要があるデータは登録ユーザーにのみ表示されるため、使用を開始する前にサイトにログインするための何かが必要です。誰かがこれを実行できるスクリプトまたは何かを提案できますか? よろしくお願いします!
質問する
1823 次
1 に答える
0
まず、次のように投稿する必要があります。
<?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;
}
これで、投稿リクエストを送信できるはずです。その後、必要なものをつかむことができるはずです。
于 2013-01-01T19:14:34.903 に答える