Answers for "remove file with php"

PHP
10

php remove file

if(file_exists($file)) {
	unlink($file);
}
Posted by: Guest on January-13-2020
2

delete file using php

/*
Deleting files is a concept in file handeling of PHP
We can remove or delete the file from real folder path using below code
*/

unlink($Your_file_path);   // direct deleting the file

/* Delete file if its exist in folder */

if (file_exists($Your_file_path)) {
  unlink($Your_file_path);
} 

/*
I hope it will help you.
Namaste
*/
Posted by: Guest on May-06-2020
3

delete file in php

unlink(filepath);
Posted by: Guest on January-23-2021
0

php delete file

// delete file function, if silent is false, function will throw exception
function deleteFile($fullFileName, $silent=0) {
  if (file_exists($fullFileName)) {
    unlink($fullFileName);
    return TRUE;
  } else {
    if ($silent == 1) {
      return FALSE;
    } else {
      throw new \InvalidArgumentException('File "'.$fullFileName.'" not exists.');
    }
  }
}
Posted by: Guest on September-20-2021

Browse Popular Code Answers by Language