使用文件获取需要发布数据的 url 上的内容

发布于 2024-11-02 03:12:21 字数 191 浏览 1 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稍尽春風 2024-11-09 03:12:21

不能***使用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.

时常饿 2024-11-09 03:12:21

啊,我已经尝试这样做了。简而言之,除非您在服务器上安装新的额外软件并经历大量麻烦和服务器负载,否则您不能。

如果可能的话,最好的选择是使用 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!

:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文