从 iPhone XML POST 到服务器
我有一个 XML,需要使用 PHP 发送到另一个网站。在 iPhone 上执行此操作的最佳方法是什么? XML 需要根据用户的选择进行格式化,然后使用我的服务器上的 PHP 发送到不同的服务器。有什么建议吗?
I have an XML that I need to send to another website using PHP. What would be the best way to do this on the iPhone? The XML needs to be formatted based on the selections of the user, then sent to a different server using PHP that is on my server. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需发送常规 POST 请求即可。
Just send a regular POST request.
免责声明:我对 @Mat 提到的 NSURLConnection 完全一无所知,也不知道如何从 iPhone 发布数据。
在 PHP 中,您可以使用 DOMDocument 将 $_POST 数据转换为 XML。另一个服务器很可能也要求您 POST XML 数据。在这种情况下,您可以使用 cURL
Disclaimer: I know absolutely nothing about NSURLConnection as @Mat alluded to or how to POST data from an iPhone.
In PHP you can convert the $_POST data to XML by using DOMDocument. The other server most likely also requires you to POST the XML data. In that case you can use cURL