Exemple #1
0
 static function getCurrentMonthEndDate()
 {
     $date = date("Y-m");
     $days = Util\Date::getDaysInMonth(date("n"));
     $date .= "-" . $days;
     return $date;
 }