getSeconds() 공개 메소드

Get seconds based on current date.
public getSeconds ( ) : string
리턴 string Seconds based on current date.
예제 #1
0
 public function testGetSeconds()
 {
     $dt = new DateTimeObject('14.02.2013 14:33:18');
     $this->assertSame("18", $dt->getSeconds());
 }