Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16095 программистов и 1783 робота. Сейчас ищут 1828 программистов ...
Collator::getErrorMessage - Get text for collator's last error code
Вернуться к: Collator
Collator::getErrorMessage
collator_get_error_message
(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
Collator::getErrorMessage -- collator_get_error_message — Get text for collator's last error code
Описание
Объектно-ориентированный стиль
public
string
Collator::getErrorMessage
( void
)
Процедурный стиль
Retrieves the message for the last error.
Возвращаемые значения
Description of an error occurred in the last Collator API function call.
Примеры
Пример #1 collator_get_error_message() example
<?php
$coll = collator_create( 'lt' );
if( collator_compare( $coll, 'y', 'k' ) === false ) {
echo collator_get_error_message( $coll );
}
?>
Вернуться к: Collator