我正在使用PHP的函数file_get_contents()来获取URL的内容,然后通过变量处理标头$http_response_header。
file_get_contents()
$http_response_header
现在的问题是某些URL需要将一些数据发布到URL(例如,登录页面)。
我怎么做?
我意识到使用stream_context我可以做到这一点,但我并不完全清楚。
谢谢。
使用发送HTTP POST请求file_get_contents并不难,实际上:正如您所猜测的,必须使用$context参数。
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);
基本上,您必须创建一个具有正确选项的流 (该页面上有完整列表) ,并将其用作第三个参数,file_get_contents仅此而已;-)
附带说明:一般来说,为了发送HTTP POST请求,我们倾向于使用curl,它提供了很多选项-但是流是PHP的优点之一,没人知道…太糟糕了。 。