Answers for "php cant rename files using variables"

PHP
10

rename file php

rename('old_filename.txt', 'new_filename.txt');
Posted by: Guest on May-14-2020
6

php rename files in directory

<?php rename ("/folder/file.ext", "newfile.ext"); ?>

The above doesn't rename the file within the folder, as you might assume, 
instead, it moves the file to whatever the PHP working directory is... 
Chances are you'll not find it in your FTP tree. 
Instead, use the following:

<?php rename ("/folder/file.ext", "/folder/newfile.ext"); ?>
Posted by: Guest on January-28-2021

Browse Popular Code Answers by Language