Files
lpmj6/named_examples/deletefile.php
T
RobinNixon 3bc0bb7409 Final
Final
2020-12-10 13:51:38 +00:00

5 lines
146 B
PHP

<?php // deletefile.php
if (!unlink('testfile2.new')) echo "Could not delete file";
else echo "File 'testfile2.new' successfully deleted";
?>