F::remove PHP Method

remove() public static method

$remove = f::remove('test.txt'); if($remove) echo 'The file has been removed';
public static remove ( string $file ) : boolean
$file string The path for the file
return boolean
    public static function remove($file)
    {
        return file_exists($file) && is_file($file) && !empty($file) ? @unlink($file) : false;
    }