Answers for "how to delete files with php"

PHP
10

php remove file

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

php unlink

<?php 
  unlink('test.html');
?>
Posted by: Guest on April-09-2020

Code answers related to "how to delete files with php"

Browse Popular Code Answers by Language