“PHP benennen Dateien im Verzeichnis um” Code-Antworten

Datei file PHP umbenennen

 rename('old_filename.txt', 'new_filename.txt');
Beautiful Bug

PHP benennen Dateien im Verzeichnis um

<?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"); ?>
Geeky Bravo

Ähnliche Antworten wie “PHP benennen Dateien im Verzeichnis um”

Fragen ähnlich wie “PHP benennen Dateien im Verzeichnis um”

Weitere verwandte Antworten zu “PHP benennen Dateien im Verzeichnis um” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen