clear() 공개 정적인 메소드

清空日志信息
public static clear ( ) : void
리턴 void
예제 #1
0
파일: logTest.php 프로젝트: Lofanmi/think
 public function testWrite()
 {
     Log::init(['type' => 'test']);
     Log::clear();
     $this->assertTrue(Log::write('hello', 'info'));
     $this->assertTrue(Log::write([1, 2, 3], 'log'));
 }