date() public static method

public static date ( $obj = null, $format = 'Y-m-d' )
Beispiel #1
0
 public function test_date()
 {
     $time = time();
     $now = date('Y-m-d', $time);
     $this->assertEquals($now, Helper::date());
     $this->assertEquals($now, Helper::date($time));
 }