在 PHP 中,file_get_contents() 函数通常用于检索 URL 的内容。但是,对于需要将数据发布到 URL 的情况(例如登录页面),file_get_contents() 的标准用法可能不够。
使用 Stream Context 进行 HTTP POST 请求
解决方案在于通过 file_get_contents() 函数利用流上下文。通过使用适当的 HTTP 选项配置流上下文,我们可以指定要发布到 URL 的数据。
$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);
在此示例中:
使用流的优点
而其他存在像curl这样的方法来处理HTTP POST请求,使用带有file_get_contents()的流具有一定的优势:
以上是如何使用 `file_get_contents()` 在 PHP 中 POST 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!