将媒体文件从 iPhone 上传到服务器
我正在开发一个可以将媒体文件(音频、视频、图像)上传到服务器的应用程序。我找到了一种方法,通过使用 PHP 服务器代码,我们能够在服务器中获取图像并将其存储。我想知道将图像上传到服务器的更好方法是什么(SOAP 或 REST 或使用 PHP)。
I am developing an application which can upload Media files (Audio, Video, Image) to the server. I found out a way by using PHP server code we ware able to get the image in server and store it. I like to know what is the better way to upload a image to a server (SOAP or REST or using PHP).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Microsoft 有一篇文章介绍如何使用 DIME(直接 Internet 消息封装)
IBM 还有另一种发送肥皂附件的方式看起来有点老了。
Microsoft has an article on how to use DIME (Direct Internet Message Encapsulation)
IBM also has another way of sending soap attachments that seems a little older.
使用soap上传文件有两种方法,首先是使用base64_decode()和base64_encode()方法
另一个正在使用由 android (SOAP) php 服务器发送的 URL。
代码是
there are two way to upload the file using soap first is using base64_decode() and base64_encode() method
and anothere is using URL that is send by android (SOAP) php server..
code is