(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
Object oriented style
public Collator::getErrorMessage ( ) : string
Procedural style
collator_get_error_message ( Collator $coll ) : string
Retrieves the message for the last error.
coll
Collator object.
Description of an error occurred in the last Collator API function call.
Example #1 collator_get_error_message() example
<?php $coll = collator_create( 'lt' ); if( collator_compare( $coll, 'y', 'k' ) === false ) { echo collator_get_error_message( $coll ); } ?>
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/collator.geterrormessage.php