Files
lpmj6/07/movefile.php
T
RobinNixon 188af22a54 Final
2021-04-18 15:31:38 +01:00

6 lines
168 B
PHP

<?php // movefile.php
if (!rename('testfile2.txt', 'testfile2.new'))
echo "Could not rename file";
else echo "File successfully renamed to 'testfile2.new'";
?>