Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have this script but i want to rename the file:

 <?php

         $fieldname = $_REQUEST['fieldname'];

                $uploaddir = 'uploads/';
                $uploadfile = $uploaddir . basename($_FILES[$fieldname]['name']);


                if (move_uploaded_file($_FILES[$fieldname]['tmp_name'], $uploadfile)) {
            //i want to rename the file before i can upload it



                 echo $uploadfile; // "success"

                } 

          else {

                echo "error";
                }

        ?>

how can i rename the file before i upload it to uploads/ directory!!

share|improve this question
Was it that hard to google "PHP rename"? google.com/search?q=php+rename – Jon Jan 4 '11 at 14:45
oh sorry, shall i delete the question!! :) – Jhon Woodwrick Jan 4 '11 at 14:52

3 Answers

up vote 2 down vote accepted

The move_uploaded_file function does exactly that. When you are moving the uploaded file from the temporary location to the uploads/ directory, you can change the name of it.

move_uploaded_file($_FILES[$fieldname]['tmp_name'], 'uploads/whatever-i-want');
share|improve this answer
can you give me an exmaple of how i can chnage the $uploadfile variable then the parameters if move_uploaded_file – Jhon Woodwrick Jan 4 '11 at 14:58

What ever you pass as the 2nd parameter to move_uploaded_file will be used as the file name.

share|improve this answer

Just specify a different target name in $uploadfile.

share|improve this answer
can you give me an example, im a newbie to php sorry :(, i would really like to chnage the varible of $uploadfile, rather than change the move_uploaded_file parameters!! its more cleaner!! thanks – Jhon Woodwrick Jan 4 '11 at 14:50
@Jhon but why? You'd just have to replace basename($_FILES[$fieldname]['name']) by whatever you want the file name to be – Pekka 웃 Jan 4 '11 at 14:59
but when i do that, when uploaded it deosnt reconise the extension – Jhon Woodwrick Jan 4 '11 at 15:04
@Jhon well, then you'll need to get the extension using pathinfo() and add that to the new name – Pekka 웃 Jan 4 '11 at 15:04

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.