如何使用file_get_contents在PHP中发布数据?

2022-08-30 06:02:45

我正在使用PHP的函数来获取URL的内容,然后通过变量处理标头。file_get_contents()$http_response_header

现在的问题是,某些 URL 需要一些数据才能发布到 URL(例如,登录页面)。

我该怎么做?

我意识到使用stream_context我也许能够做到这一点,但我并不完全清楚。

谢谢。


答案 1

实际上,使用file_get_contents发送HTTP POST请求并不难:正如您所猜测的那样,您必须使用该参数。$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);

基本上,您必须使用正确的选项创建一个流(该页面上有一个完整的列表),并将其用作第三个参数 - 仅此而已;-)file_get_contents


顺便说一句:一般来说,要发送HTTP POST请求,我们倾向于使用curl,它提供了很多选项 - 但是流是PHP的好东西之一,没有人知道...太糟糕了。。。


答案 2

另一种选择,您也可以使用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");
}

推荐