コード例 #1
0
ファイル: Screen.php プロジェクト: d-ashesss/php-console
 /**
  * Clears entire line and moves cursor to the beginning of the line
  */
 public function clearLine()
 {
     $this->console->write(Code::CR);
     $this->console->writeCode(Code::SCREEN_CLEAR_LINE);
 }
コード例 #2
0
ファイル: ConsoleTest.php プロジェクト: d-ashesss/php-console
 public function testWrite_output_log_append()
 {
     $this->console->write('test');
     $this->console->write('test');
     $this->assertEquals('testtest', $this->console->getOutput());
 }