Exemple #1
0
 /** Obtiene el nombre de un mes dado por su numero
  * 
  * @param type $month
  * @return type
  */
 static function getNameMonth($month)
 {
     if ($month <= 0) {
         return null;
     }
     $monthes = DateUtil::getMonthsNames();
     return $monthes[$month];
 }