10 lines
224 B
PHP
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);
|
|
}
|
|
}
|