Ouzo\Utilities\Date::endOfDay PHP Method

endOfDay() public static method

Example: $date = '2013-09-09 13:03:43'; $end = Date::endOfDay($date); Result: 2013-09-09 23:59:59.9999
public static endOfDay ( string $date ) : string
$date string
return string
    public static function endOfDay($date)
    {
        return self::formatDate($date) . ' 23:59:59.9999';
    }

Usage Example

コード例 #1
0
ファイル: DateTest.php プロジェクト: letsdrink/ouzo
 /**
  * @test
  */
 public function shouldGetEndOfDayForDateWithTime()
 {
     //given
     $date = '2013-09-09 13:03:43';
     //when
     $end = Date::endOfDay($date);
     //then
     $this->assertEquals('2013-09-09 23:59:59.9999', $end);
 }