“php cara menghapus file” Kode Jawaban

php cara menghapus file

if(file_exists($file)) {
	unlink($file);
} 
Friendly Hawk

File Hapus PHP

// 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.');
    }
  }
}
MaestroError

Jawaban yang mirip dengan “php cara menghapus file”

Pertanyaan yang mirip dengan “php cara menghapus file”

Lebih banyak jawaban terkait untuk “php cara menghapus file” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya