IntlCalendar::getLeastMaximum
(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a1)
IntlCalendar::getLeastMaximum — 指定されたフィールドの、ローカルな最大値のうち、最小の値を返す
説明
オブジェクト指向型
手続き型
指定されたフィールドの、ローカルな最大値のうち、最小の値を返します。 これは、 IntlCalendar::getActualMaxmimum() が返す値に等しいか、より小さい値、もしくは、 IntlCalendar::getMaximum() が返す値に等しいか、より小さい値になるはずです。
パラメータ
calendar
-
IntlCalendar クラスのインスタンス。
field
-
IntlCalendar の日付/時刻 フィールド定数 のいずれか。
0
からIntlCalendar::FIELD_COUNT
までの間の整数値です。
戻り値
フィールドの値を示す整数値を、フィールドの単位で返します。
失敗した場合に false
を返します
例
例1 Maxima examples
<?php
ini_set('date.timezone', 'UTC');
ini_set('intl.default_locale', 'it_IT');
$cal = new IntlGregorianCalendar(2013, 3 /* April */, 6);
var_dump(
$cal->getLeastMaximum(IntlCalendar::FIELD_DAY_OF_MONTH), // 28
$cal->getActualMaximum(IntlCalendar::FIELD_DAY_OF_MONTH), // 30
$cal->getMaximum(IntlCalendar::FIELD_DAY_OF_MONTH) // 31
);
上の例の出力は以下となります。
int(28) int(30) int(31)
参考
- IntlCalendar::getActualMaximum() - オブジェクトの現在時刻を考慮して、フィールドの最大値を取得する
- IntlCalendar::getMaximum() - フィールドのグローバルな最大値を返す
- IntlCalendar::getGreatestMinimum() - 指定されたフィールドの、ローカルな最小値のうち、最大の値を返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google