You are here

function date_calc_get_month_abbrname in Date 5.2

Same name and namespace in other branches
  1. 6.2 date_php4/date_php4_calc.inc \date_calc_get_month_abbrname()
  2. 6 date_php4/date_php4_calc.inc \date_calc_get_month_abbrname()

Returns the abbreviated month name for the given month.

Parameters

int $month: The month.

int $length: The length of abbreviation.

Return value

string The abbreviated name of the month.

1 call to date_calc_get_month_abbrname()
date_calc_format in date_php4/date_php4_calc.inc
Formats the date in the given format, much like strfmt()

File

date_php4/date_php4_calc.inc, line 567

Code

function date_calc_get_month_abbrname($month, $length = 3) {
  $month = (int) $month;
  if (empty($month)) {
    $month = date_calc_get_month();
  }
  return drupal_substr(date_calc_get_month_fullname($month), 0, $length);
}