320

PHPの関数file_get_contents()を使用してURLのコンテンツをフェッチしてから、変数を介してヘッダーを処理しています$http_response_header

ここで問題となるのは、一部のURL(ログインページなど)にURLに投稿するためにいくつかのデータが必要なことです。

それ、どうやったら出来るの?

stream_contextを使用することでそれができるかもしれませんが、完全には明確ではありません。

ありがとう。

4

3 に答える 3

626

を使用してHTTPPOSTリクエストを送信することfile_get_contentsはそれほど難しくありません。実際には、ご想像のとおり、$contextパラメータを使用する必要があります。


このページのPHPマニュアルに例があります:HTTPコンテキストオプション (引用符)

$postdata = http_build_query(
    array(
        'var1' => 'some content',
        'var2' => 'doh'
    )
);

$opts = array('http' =>
    array(
        'method'  => 'POST',
        'header'  => 'Content-Type: application/x-www-form-urlencoded',
        'content' => $postdata
    )
);

$context  = stream_context_create($opts);

$result = file_get_contents('http://example.com/submit.php', false, $context);

基本的に、適切なオプションを使用してストリームを作成し(そのページに完全なリストがあります)、それを3番目のパラメーターとして使用する必要がありますfile_get_contents-これ以上;-)


補足として:一般的に言って、HTTP POSTリクエストを送信するには、curlを使用する傾向があります。これは、多くのオプションをすべて提供しますが、ストリームは、誰も知らないPHPの優れた機能の1つです...残念です。 。

于 2010-03-15T05:44:26.597 に答える
23

別の方法として、 fopenを使用することもできます

$params = array('http' => array(
    'method' => 'POST',
    'content' => 'toto=1&tata=2'
));

$ctx = stream_context_create($params);
$fp = @fopen($sUrl, 'rb', false, $ctx);
if (!$fp)
{
    throw new Exception("Problem with $sUrl, $php_errormsg");
}

$response = @stream_get_contents($fp);
if ($response === false) 
{
    throw new Exception("Problem reading data from $sUrl, $php_errormsg");
}
于 2013-06-09T19:29:08.453 に答える
-1
$sUrl = 'http://www.linktopage.com/login/';
$params = array('http' => array(
    'method'  => 'POST',
    'content' => 'username=admin195&password=d123456789'
));

$ctx = stream_context_create($params);
$fp = @fopen($sUrl, 'rb', false, $ctx);
if(!$fp) {
    throw new Exception("Problem with $sUrl, $php_errormsg");
}

$response = @stream_get_contents($fp);
if($response === false) {
    throw new Exception("Problem reading data from $sUrl, $php_errormsg");
}
于 2015-04-12T17:47:02.660 に答える