--TEST-- IntlDateFormatter with invalid locale --EXTENSIONS-- intl --FILE-- getMessage(), PHP_EOL; } $df = IntlDateFormatter::create($locale, $type, $type, $timezone, $invalidCalendar); var_dump($df); var_dump(intl_get_error_message()); $df = datefmt_create($locale, $type, $type, $timezone, $invalidCalendar); var_dump($df); var_dump(intl_get_error_message()); ?> --EXPECT-- IntlException: IntlDateFormatter::__construct(): Invalid value for calendar type; it must be one of IntlDateFormatter::TRADITIONAL (locale's default calendar) or IntlDateFormatter::GREGORIAN. Alternatively, it can be an IntlCalendar object NULL string(245) "IntlDateFormatter::create(): Invalid value for calendar type; it must be one of IntlDateFormatter::TRADITIONAL (locale's default calendar) or IntlDateFormatter::GREGORIAN. Alternatively, it can be an IntlCalendar object: U_ILLEGAL_ARGUMENT_ERROR" NULL string(234) "datefmt_create(): Invalid value for calendar type; it must be one of IntlDateFormatter::TRADITIONAL (locale's default calendar) or IntlDateFormatter::GREGORIAN. Alternatively, it can be an IntlCalendar object: U_ILLEGAL_ARGUMENT_ERROR"