(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
Get text for collator's last error code
public string Collator::getErrorMessage ( void )
Object oriented style
Procedural style
Retrieves the message for the last error.
Parameters:
coll
Collator object.
Returns:
Description of an error occurred in the last Collator API function call.
Examples:
collator_get_error_message() example
<?php $coll = collator_create( 'lt' ); if( collator_compare( $coll, 'y', 'k' ) === false ) { echo collator_get_error_message( $coll ); } ?>
See also:
Please login to continue.