1

例如,如果我上传文件 foo.png 如何在上传控制器中获取字符串“foo.png”?

控制器代码为:

<?php

class Upload extends CI_Controller {

    function __construct()
    {
        parent::__construct();
        $this->load->helper(array('form', 'url'));
        $this->load->database();
    }

    function do_upload($folder)
    {
        $config['upload_path'] = './userdata/'. $folder . '/';
        $config['allowed_types'] = 'gif|jpg|png';
        $config['max_size'] = '100';
        $config['max_width']  = '1024';
        $config['max_height']  = '768';

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

        if ( ! $this->upload->do_upload())
        {
            $error = array('error' => $this->upload->display_errors());
            echo $this->upload->display_errors();
        }
        else
        {
            $data = array('upload_data' => $this->upload->data());
            echo "<p>File sucesfully uploaded</p>";

            $filename = // How do I get the filename here

        }
    }
}
?>

如何设置$filename上传文件的文件名?

4

3 回答 3

4

来自官方 CI 手册

$this->upload->data()
This is a helper function that returns an array containing all of the data related to the file you uploaded. Here is the array prototype:
Array
(
    [file_name]    => mypic.jpg
    [file_type]    => image/jpeg
    [file_path]    => /path/to/your/upload/
    [full_path]    => /path/to/your/upload/jpg.jpg
    [raw_name]     => mypic
    [orig_name]    => mypic.jpg
    [client_name]  => mypic.jpg
    [file_ext]     => .jpg
    [file_size]    => 22.2
    [is_image]     => 1
    [image_width]  => 800
    [image_height] => 600
    [image_type]   => jpeg
    [image_size_str] => width="800" height="200"
)

所以在你的情况下$data,保存函数结果的变量$this->upload->data()应该包含你需要的关于你上传的文件的所有信息。

特别$data['upload_data']['file_name']是您正在寻找的东西。

于 2013-03-16T21:15:06.747 回答
2

试试这个!

$data = $this->upload->data();
echo $data['file_name'];
于 2013-05-08T03:58:28.347 回答
1
echo $data['raw_name'].$data['file_ext'];

应该做的伎俩

例如你上传你的图片

if($this->upload->do_upload('upload_data')) {
$data = $this->upload->data();
echo $data['raw_name'].$data['file_ext'];
}
于 2013-03-16T21:12:00.717 回答