Moving a file : rename « File Directory « PHP
- PHP
- File Directory
- rename
Moving a file
<?php
$old = '/tmp/today.txt';
$new = '/tmp/tomorrow.txt';
rename($old,$new) or die("couldn't move $old to $new: $php_errormsg");
?>
Related examples in the same category