test_unlink
<?php
$fh = fopen('test.html', 'a');
fwrite($fh, '<
h1>
Hello world!<
/h1>
');
fclose($fh);
unlink('test.html');
?>
INFO
<?php
$fh = fopen('test.html', 'a');
fwrite($fh, '<
h1>
Hello world!<
/h1>
');
fclose($fh);
unlink('test.html');
?>