CUploadedFile 创建多个
我想提供两种上传文件的方式 - 使用 和通过 URL 远程上传。
是否可以使用远程 url 中的数据创建 CUploadedFile?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想提供两种上传文件的方式 - 使用 和通过 URL 远程上传。
是否可以使用远程 url 中的数据创建 CUploadedFile?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
远程上传实际上不是上传,而是用户提交链接,您需要将其复制到您的服务器。
考虑 CUploadedFile 仅用于上传部分并移交给下一个文件处理程序。
完成上传或复制后,您可能需要使用另一个文件管理实用程序,例如此处的 cfile 扩展 http:// www.yiiframework.com/extension/cfile/ 管理已“复制/上传”到所需目录的文件。
The remote upload is actually not an upload, rather the user submits the link and you need to copy it over to your server.
Consider CUploadedFile to be used only for the upload part and handover to the next file handler.
Once done with upload or copy, You might want to use another file management utility like cfile extension here http://www.yiiframework.com/extension/cfile/ to manage both your files already "copied/uploaded" to your desired directory.