php 中 ASP.NET 的 WebRequest 相当于什么?
与 php 中 ASP.NET 的 WebRequest 等效的是什么?
What is the equivalent of ASP.NET's WebRequest in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
与 php 中 ASP.NET 的 WebRequest 等效的是什么?
What is the equivalent of ASP.NET's WebRequest in php?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我认为这将是 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.
您可以使用
curl
。这里有一些示例: Make Yahoo!使用 PHP 进行 Web 服务 REST 调用
You can to use
curl
.Some samples here: Make Yahoo! Web Service REST Calls with PHP
只是补充一下 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.