(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
intl_get_error_message — 直近のエラーの説明を取得する
直近の国際化関数のコールによるエラーメッセージを取得します。
直近の API 関数のコールで発生したエラーの説明を返します。
例1 intl_get_error_message() の例
<?php
if( Collator::getAvailableLocales() === false ) {
show_error( intl_get_error_message() );
}
?>