php 中 ASP.NET 的 WebRequest 相当于什么?

发布于 2024-08-17 13:47:51 字数 43 浏览 7 评论 0原文

与 php 中 ASP.NET 的 WebRequest 等效的是什么?

What is the equivalent of ASP.NET's WebRequest in php?

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

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

发布评论

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

评论(3

一花一树开 2024-08-24 13:47:51

我认为这将是 fopen,它可以从文件或远程 URL 检索数据。

如果您有兴趣检索远程资源,您还可以考虑使用 curl

I think that would be fopen, which can retrieve data from files or remote URLs.

You could also look into using curl if you're interested in retrieving remote resources.

彼岸花似海 2024-08-24 13:47:51

您可以使用 curl

这里有一些示例: Make Yahoo!使用 PHP 进行 Web 服务 REST 调用

You can to use curl.

Some samples here: Make Yahoo! Web Service REST Calls with PHP

弥繁 2024-08-24 13:47:51

只是补充一下 file() 函数也可以使用 URL:

http:// /www.php.net/manual/en/function.file.php

如果已启用 fopen 包装器,则可以将 URL 用作此函数的文件名。

HTTP、HTTPS 都支持,但使用这些函数您仅生成 GET 请求。

我也会去卷曲整个包裹。

Just to add that the file() function can work with URLs too:

http://www.php.net/manual/en/function.file.php

A URL can be used as a filename with this function if the fopen wrappers have been enabled.

HTTP, HTTPS are both soported but using these functions you're generating only GET request.

I'd also go curl for the whole package.

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