PHP Doku:: Get the error code from last operation - messageformatter.geterrorcode.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe MessageFormatter classMessageFormatter::getErrorCode -- msgfmt_get_error_code

Ein Service von Reinhard Neidl - Webprogrammierung.

The MessageFormatter class

<<MessageFormatter::format -- msgfmt_format

MessageFormatter::getErrorMessage -- msgfmt_get_error_message>>

MessageFormatter::getErrorCode

msgfmt_get_error_code

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

MessageFormatter::getErrorCode -- msgfmt_get_error_codeGet the error code from last operation

Beschreibung

Object oriented style

int MessageFormatter::getErrorCode ( void )

Procedural style

int msgfmt_get_error_code ( MessageFormatter $fmt )

Get the error code from last operation.

Parameter-Liste

fmt

The message formatter

Rückgabewerte

The error code, one of UErrorCode values. Initial value is U_ZERO_ERROR.

Beispiele

Beispiel #1 msgfmt_get_error_code() example

<?php
$fmt 
msgfmt_create("en_US""{0, number} monkeys on {1, number} trees");
$str msgfmt_format($fmt, array());
if(!
$str) {
    echo 
"ERROR: ".msgfmt_get_error_message($fmt) . " (" msgfmt_get_error_code($fmt) . ")\n";
}
?>

Beispiel #2 OO example

<?php
$fmt 
= new MessageFormatter("en_US""{0, number} monkeys on {1, number} trees");
$str $fmt->format(array());
if(!
$str) {
    echo 
"ERROR: ".$fmt->getErrorMessage() . " (" $fmt->getErrorCode() . ")\n";
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

ERROR: msgfmt_format: not enough parameters: U_ILLEGAL_ARGUMENT_ERROR (1)

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",...)