来自 ExpressionEngine 的输入文件?

发布于 2024-11-26 18:13:55 字数 66 浏览 1 评论 0原文

有没有办法使用 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 技术交流群。

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

发布评论

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

评论(1

甚是思念 2024-12-03 18:13:55

不在输入类中,您可以只使用$_FILES。

不过,您可能想看看 Upload 类。为了更好地了解其工作原理,您可以查看 EE 目录中 Filemanager 库文件中的函数 _upload_file()。入门指南:

    $this->EE->load->library('upload');
    $this->EE->upload->initialize($config);

    if ( ! $this->EE->upload->do_upload($field_name))
    {
        return $this->_upload_error(
            $this->EE->upload->display_errors()
        );
    }

    $file = $this->EE->upload->data();

$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:

    $this->EE->load->library('upload');
    $this->EE->upload->initialize($config);

    if ( ! $this->EE->upload->do_upload($field_name))
    {
        return $this->_upload_error(
            $this->EE->upload->display_errors()
        );
    }

    $file = $this->EE->upload->data();

The $config array contains the options for the upload, which you can review in the CodeIgniter docs.

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