我想添加時間作爲圖像名稱的前綴以及上傳時的原始名稱,但我無法弄清楚。上傳時,請幫助我使用以下代碼在我的原始文件名稱中添加前綴。Codeigniter重命名文件上傳
<?php
class Upload extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
}
function index()
{
$this->load->view('upload_form', array('error' => ' '));
}
function do_upload()
{
$config['upload_path'] = 'Public/uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '1024';
$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());
$this->load->view('upload_form', $error);
}
else
{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}
}
?>
的[重命名CI中上傳的文件(可能重複的HTTP ://stackoverflow.com/questions/4073752/renaming-an-uploaded-file-in-codeigniter) –