6 lines
83 B
PHP
6 lines
83 B
PHP
<?php
|
|
unlink('input.txt');
|
|
unlink('/input.txt');
|
|
rmdir('docs');
|
|
rmdir('/docs');
|
|
?>
|