CUploadedFile 创建多个

发布于 2024-11-06 14:01:39 字数 115 浏览 0 评论 0 原文

我想提供两种上传文件的方式 - 使用 和通过 URL 远程上传。

是否可以使用远程 url 中的数据创建 CUploadedFile?

I want to offer 2 ways of uploading files - with <input type='file'> and remote upload by URL.

Is it possible to create a CUploadedFile using data from a remote url?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沧笙踏歌 2024-11-13 14:01:39

远程上传实际上不是上传,而是用户提交链接,您需要将其复制到您的服务器。
考虑 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文