Welcome Guest, Not a member yet? Register   Sign In
Upload and replace file or image
#3

(03-04-2021, 01:11 AM)iRedds Wrote: You can pass the third argument as true in the move() method to overwrite the file.

thank you very much, it worked ... !!!

Code:
$file = $this->request->getFile($info['archivo']);
   $newName = substr($info['archivo'], 4).'_'.$id_usuario.'.'.$file->getExtension(); //Nombre archivo
   $ruta = './imagen/'.$id_usuario; //Ruta archivo
   $file->move($ruta,$newName,true);
Reply


Messages In This Thread
Upload and replace file or image - by Simylarx - 03-03-2021, 12:04 PM
RE: Upload and replace file or image - by iRedds - 03-04-2021, 01:11 AM
RE: Upload and replace file or image - by Simylarx - 03-04-2021, 05:29 PM
RE: Upload and replace file or image - by iRedds - 03-05-2021, 02:45 AM



Theme © iAndrew 2016 - Forum software by © MyBB