Dutch PHP Conference 2025 - Call For Papers

Collator::getErrorMessage

collator_get_error_message

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

Collator::getErrorMessage -- collator_get_error_messageGet text for collator's last error code

Опис

Об'єктно-орієнтований стиль

public Collator::getErrorMessage(): string|false

Процедурний стиль

collator_get_error_message(Collator $object): string|false

Retrieves the message for the last error.

Параметри

object

Collator object.

Значення, що повертаються

Description of an error occurred in the last Collator API function call, або false в разі помилки.

Приклади

Приклад #1 collator_get_error_message() example

<?php
$coll
= collator_create( 'lt' );
if(
collator_compare( $coll, 'y', 'k' ) === false ) {
echo
collator_get_error_message( $coll );
}
?>

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top