Saltar al contenido

cómo cambiar el nombre del archivo en el ejemplo de código php

Ejemplo 1: cambiar el nombre del archivo php

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

Ejemplo 2: php renombrar archivos en el directorio

<?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"); ?>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *