lithium\console\Command::clear PHP 메소드

clear() 공개 메소드

Clears the entire screen.
public clear ( ) : void
리턴 void
    public function clear()
    {
        passthru(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN' ? 'cls' : 'clear');
    }