如何使用 PHP 将数据 POST 到 URL(远程 ASMX 服务器)?
我有一个指向 .asmx 的 http 链接。我尝试调用 file_get_contents 或 fopen 来发布数据。但返回http流无法打开。
关于 open .asmx 有任何提示吗?
谢谢。
I have a http link that points to .asmx. I tried to call file_get_contents or fopen to POST data. But it returns that the http stream cannot be opened.
Is there any hint on open .asmx ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它与 asmx 文件无关。您需要发送帖子数据。
您可以使用 php curl 函数来实现它。
示例: CURL
It has nothing to do with being an asmx file. You need to send post data.
You can use the php curl function for it.
Example: CURL
只要您的请求只应在服务器上处理(并且不应执行 JS 或其他客户端处理),您可以使用 卷曲:
as long as your request should be processed only on the server (and no JS or other client side processing should be performed) you can use curl: