来自 ExpressionEngine 的输入文件?
有没有办法使用 EE 的 Input 类引用上传的文件?我知道它有一个“post”方法来获取post变量,但是文件呢?
Is there a way to reference uploaded files using EE's Input class? I know it has a "post" method to get post variables, but what about files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不在输入类中,您可以只使用$_FILES。
不过,您可能想看看 Upload 类。为了更好地了解其工作原理,您可以查看 EE 目录中 Filemanager 库文件中的函数 _upload_file()。入门指南:
$config
数组包含上传选项,您可以在 CodeIgniter 文档。Not in the input class, you can just use $_FILES.
You may want to have a look at the Upload class though. For a good overview of how it works, you can check out the function _upload_file() in the Filemanager library file within your EE directory. A primer:
The
$config
array contains the options for the upload, which you can review in the CodeIgniter docs.