| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
IntlCalendar::isLenient(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) IntlCalendar::isLenient — Whether date/time interpretation is in lenient mode 説明オブジェクト指向型
public bool IntlCalendar::isLenient
( void
)
手続き型 Returns whether the current date/time interpretations is lenient (the default). If that is case, some out of range values for fields will be accepted instead of raising an error. パラメータ
返り値A bool representing whether the calendar is set to lenient mode. 例
例1 IntlCalendar::isLenient()
<?php 上の例の出力は以下となります。 string(20) "01/07/2013, 00:00:00" bool(true) string(20) "02/08/2013, 00:00:00" bool(false) Fatal error: Uncaught exception 'IntlException' with message 'datefmt_format_object: error obtaining instant from IntlCalendar' in /home/foobar/example.php:16 Stack trace: #0 /home/foobar/example.php(16): IntlDateFormatter::formatObject(Object(IntlGregorianCalendar)) #1 {main} thrown in /home/foobar/example.php on line 16 |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「IntlCalendar::isLenient - Whether date/time interpretation is in lenient mode」をGoogle検索
|