使用文件获取需要发布数据的 url 上的内容
我需要在 URL 上执行“file_get_contents”,并且在检索内容之前必须将数据发布到 URL。这可能吗?也许类似
$contents = file_get_contents($_POST"http://www.example.com/");
这样我就可以使用 $contents 变量?
i need to do a "file_get_contents" on a URL and there has to be data posted to the url before the contents are retrieved. is this possible? maybe something like
$contents = file_get_contents($_POST"http://www.example.com/");
so that i can then work with the $contents variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能***使用
file_get_contents
发布数据,您必须使用cURL* 我标记这一点是因为实际上可以利用使用 http 上下文(参见示例一)。 但是,如果您有像 cURL 这样的东西,那么真的不值得您这么麻烦。
You cannot*** POST data using
file_get_contents
, you must use something like cURL* I mark this because it is actually possible taking advantage of the third parameter which uses http context(see example one). However it really isn't worth your trouble if you have something like cURL.
啊,我已经尝试这样做了。简而言之,除非您在服务器上安装新的额外软件并经历大量麻烦和服务器负载,否则您不能。
如果可能的话,最好的选择是使用 GET!
:)
Ah, I have tried to do this. Simply put you can't unless you install new extra software on your sever and go through A LOT of hassel and server load.
Best bet is to use GET if at all possible!
:)