You are here

private function Date::monthDayString in PersianTools 7

returns long text day of the month

@access private

Parameters

int $monthDayValue:

Return value

string

1 call to Date::monthDayString()
Date::format in includes/Date.php
this is a clone of the internal php function date() with a few exceptions in the acceptable parameters

File

includes/Date.php, line 393

Class

Date

Namespace

Shamsi

Code

private function monthDayString($monthDayValue) {
  $monthDays = array(
    1 => 'یکم',
    'دوم',
    'سوم',
    'چهارم',
    'پنجم',
    'ششم',
    'هفتم',
    'هشتم',
    'نهم',
    'دهم',
    'یازدهم',
    'دوازهم',
    'سیزدهم',
    'چهاردهم',
    'پانزدهم',
    'شانزدهم',
    'هفدهم',
    'هژدهم',
    'نوزدهم',
    'بیستم',
    'بیست و یکم',
    'بیست و دوم',
    'بیست و سوم',
    'بیست و چهارم',
    'بیست و پنجم',
    'بیست و ششم',
    'بیست و هفتم',
    'بیست و هشتم',
    'بیست و نهم',
    'سی ام',
    'سی و یکم',
  );
  return $monthDays[$monthDayValue];
}