发布数据和接收内容 fsockopen

发布于 2024-08-23 08:13:00 字数 191 浏览 6 评论 0原文

我不知道如何使用 fsockopen。有人可以发布一个小示例,说明如何使用 fsockopen 将数据发布到不属于我的网站,然后返回带有发布数据的页面的源代码。

id 的一个例子是,假设一个网站会将名称为“output”的任何表单乘以 5。因此,如果我使用输出“2”向其发布数据,则页面应该回显“10”,并且我想要一个变量来获取“10”时的文件内容。

I have no clue how to use fsockopen. Could someone please post a small example of how to use fsockopen to post data to a website that is not mine, and then return the source code of the page with post data.

An example of what id like is lets say a website will multiply whatever the form with the name "output" says by 5. So if I post data to it with the output "2", the page should echo "10", and I would like to have a variable to get the file contents of when it says "10".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

送君千里 2024-08-30 08:13:00

如果您坚持使用 fsockopen 完成此工作,那么您将打开与远程 Web 服务器的端口 80 的连接,使用 fwrite 发送 HTTP 协议需要的数据,并使用 fgets 读取响应。

但是,我认为您最好使用 cURL 来实现此目的目的。

If you insist on doing this work with fsockopen, then you will open a connection to port 80 of the remote web server, use fwrite to send the HTTP protocol require data and fgets to read the response.

However, I think you will be well served to use cURL for this purpose.

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