Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to amend codeigniters' file uploader class so the filename of every file is the date & time, regardless of the filetype uploaded.

My current upload function is:

        function do_upload()
    {
        $config['upload_path'] = './uploads/';
        $config['allowed_types'] = 'gif|jpg|png';
        $config['max_size'] = '2048';
        $config['max_width']  = '1624';
        $config['max_height']  = '1268';
        $config['file_name']  = substr(md5(time()), 0, 28);

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

        if ( ! $this->upload->do_upload())
        {
            $error = array('error' => $this->upload->display_errors());

        }
        else
        {
            $data = array('upload_data' => $this->upload->data());

            $this->load->view('upload_success', $data);
        }
    }

Any suggestions much appreciated.

share|improve this question
What do you do if two files of the same type are uploaded at the same date and time? – Waleed Khan Sep 23 '12 at 21:26
Good point. Codeigniter seems to add-1, -2 etc to filenames the same. It's quite possible that could happen i suppose. – Christopher Camplin Sep 23 '12 at 21:44

1 Answer

up vote 2 down vote accepted

Change

$config['file_name']  = substr(md5(time()), 0, 28);

to be the date and time:

$config['file_name'] = date("Y_m_d H:i:s");

See PHP's date to learn how to format it.

share|improve this answer
Thanks - I did try this but it didn't seem to work - trying again, you have the date formatted slightly different. – Christopher Camplin Sep 23 '12 at 21:41
Ok, that worked perfectly. Sorry for wasting your time.... – Christopher Camplin Sep 23 '12 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.