Codeigniter Rename file on upload

后端 未结 9 2344
暗喜
暗喜 2020-12-13 09:28

I\'m trying to add time as the prefix of the image name along with the original name when uploading, But I couldn\'t figure it out. Please help me with the following code to

9条回答
  •  -上瘾入骨i
    2020-12-13 10:04

    You can encrypt file name with use of CI native option:

    $config['encrypt_name'] = TRUE;
    

    OR

    You can do it with your own code:

    $new_name = time().$_FILES["userfiles"]['name'];
    $config['file_name'] = $new_name;
    

提交回复
热议问题