getDay() 공개 메소드

Get day based on current date.
public getDay ( null | string $format = null ) : string
$format null | string A valid day format.
리턴 string Day based on current date.
예제 #1
0
 public function testGetDay()
 {
     $dt = new DateTimeObject('14.02.2013');
     $this->assertSame("14", $dt->getDay());
 }