|
IntlDateFormatter::isLenientdatefmt_is_lenient(PHP 5 >= 5.3.0, PECL intl >= 1.0.0) IntlDateFormatter::isLenient -- datefmt_is_lenient — Get the lenient used for the IntlDateFormatter ОписаниеОбъектно-ориентированный стиль
bool IntlDateFormatter::isLenient
( void
)
Процедурный стиль Check if the parser is strict or lenient in interpreting inputs that do not match the pattern exactly. Список параметров
Возвращаемые значенияTRUE if parser is lenient, FALSE if parser is strict. By default the parser is strict. ПримерыПример #1 datefmt_is_lenient() example
<?php Пример #2 OO example
<?php Результат выполнения данного примера: lenient of the formatter is : TRUE Trying to do parse('35/13/1971'). Result is : -2147483 Now lenient of the formatter is : FALSE Trying to do parse('35/13/1971'). Result is : Error_msg is : Date parsing failed: U_PARSE_ERROR Error_code is : 9 Смотрите также
|
|