clearLine() public static method

Cursor position will not be changed.
public static clearLine ( )
Beispiel #1
0
 public static function clearLine()
 {
     if (self::isRunningOnWindows()) {
         echo "\r";
     } else {
         parent::clearLine();
     }
 }