Answers for "verifica esistenza file in php"

PHP
3

verificare esistenza file in php

if( file_exists("percorso-completo/file-o-immagine.jpg")) {
  //the existing file
  
}else{
//the file does not exist
}
Posted by: Guest on October-10-2020

Browse Popular Code Answers by Language