php8.5
Home/ Manual/ intl / collator/ Collator::getErrorMessage

Collator::getErrorMessage

PHP function Edit on GitHub ✎

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

Get text for collator's last error code

Description

Oop

Collator::getErrorMessage(): string|false

Procedural

collator_get_error_message(Collator $object): string|false

Retrieves the message for the last error.

Parameters

object

Collator object.

Return Values

Description of an error occurred in the last Collator API function call, Falseforfailure.

Examples

collator_get_error_message() example

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

See Also

Source: reference/intl/collator/get-error-message.xml · from the official PHP manual (php/doc-en)