Files
2024-10-14 23:04:58 +08:00

10 lines
224 B
PHP

<?php
function func($commands)
{
if (sizeof($commands) == 1) {
file_put_contents("recent.txt", "");
} else {
file_put_contents("recent.txt", "Invalid number of arguments.<br/>", FILE_APPEND);
}
}