
IntlDateFormatter::getErrorMessage 메서드는 IntlDateFormatter 에러 메시지를 반환하는 메서드입니다. 그러나 이 메서드는 항상 오류 메시지를 반환하는 것은 아닙니다.
IntlDateFormatter 에러 메시지를 얻기 위해서는 다음과 같이 null 체크를 해주어야 합니다.
#hostingforum.kr
php
$errorMsg = $formatter->getErrorMessage();
if ($errorMsg === null) {
// 오류 메시지가 없을 때 대체 메시지 출력
$errorMsg = '오류 메시지가 없습니다.';
}
위와 같이 null 체크를 해주면, 오류 메시지가 없을 때 대체 메시지를 출력할 수 있습니다.
2025-04-05 17:13