PHP Doku:: Get text for collator s last error code - collator.geterrormessage.html

Verlauf / Chronik / History: (4) anzeigen

Sie sind hier:
Doku-Startseite ≥ PHP-Handbuch ≥ Funktionsreferenz ≥ Unterstützung menschlicher Sprache und Zeichenkodierung ≥ Internationalization Functions ≥ The Collator class ≥ Collator::getErrorMessage -- collator_get_error_message

Ein Service von Reinhard Neidl - Webprogrammierung.

The Collator class

<<Collator::getErrorCode -- collator_get_error_code

Collator::getLocale -- collator_get_locale>>

Collator::getErrorMessage

collator_get_error_message

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

Collator::getErrorMessage -- collator_get_error_message — Get text for collator's last error code

Beschreibung

Object oriented style

string Collator::getErrorMessage ( void )

Procedural style

string collator_get_error_message ( Collator $coll )

Retrieves the message for the last error.

Parameter-Liste

coll

Collator object.

Rückgabewerte

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

Beispiele

Beispiel #1 collator_get_error_message() example

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)