Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_unlink

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-12T07:17:24Z

Updated

2019-09-12T07:17:24Z

<?php

$fh = fopen('test.html', 'a');

fwrite($fh, '<
h1>
Hello world!<
/h1>
');

fclose($fh);

unlink('test.html');

?>
INFO