unlink() php code example
Example 1: php how to delete file
if(file_exists($file)) {
unlink($file);
}
Example 2: php unlink
<?php
unlink('test.html');
?>
if(file_exists($file)) {
unlink($file);
}
<?php
unlink('test.html');
?>