(No version information available, might be only in CVS)
Collator::getErrorCode -- collator_get_error_code — Get collator's last error code
Object oriented style
Procedural style
Collator object.
Error code returned by the last Collator API function call.
Example #1 collator_get_error_code() example
<?php$coll = collator_create( 'en_US' );if( collator_get_attribute( $coll, Collator::FRENCH_COLLATION ) === false ) handle_error( collator_get_error_code() );?>