Collator::getErrorMessage

collator_get_error_message

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

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

Опис

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

public string Collator::getErrorMessage ( void )

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

string collator_get_error_message ( Collator $coll )

Retrieves the message for the last error.

Параметри

coll

Collator object.

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

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

Приклади

Приклад #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 add a note

User Contributed Notes

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