Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/02/2014, 18:20
lolainas
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Archivos existente

Código PHP:
Ver original
  1. function get_filename($file) {
  2.     $name = pathinfo($file, PATHINFO_FILENAME);
  3.     $ext = pathinfo($file, PATHINFO_EXTENSION);
  4.     for ($i = 1; is_file($file); $i++)
  5.         $file = "$name($i).$ext";
  6.     return $file;
  7. }