PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

NumberFormatter::getLocale> <NumberFormatter::getErrorCode
Last updated: Fri, 14 Nov 2008

view this page in

NumberFormatter::getErrorMessage

numfmt_get_error_message

(No version information available, might be only in CVS)

NumberFormatter::getErrorMessage -- numfmt_get_error_messageGet formatter's last error message.

Descrição

Object oriented style

string NumberFormatter::getErrorMessage ( void )

Procedural style

string numfmt_get_error_message ( NumberFormatter $fmt )

Get error message from the last function performed by the formatter.

Parâmetros

fmt

NumberFormatter object.

Valor Retornado

Returns error message from last formatter call.

Exemplos

Exemplo #1 numfmt_get_error_message() example

<?php
$fmt 
numfmt_create'de_DE'NumberFormatter::DECIMAL );
$data numfmt_format($fmt1234567.891234567890000);
if(
intl_is_failure(numfmt_get_error_code($fmt))) {
    
report_error("Formatter error");
}
?>

Exemplo #2 OO example

<?php
$fmt 
= new NumberFormatter'de_DE'NumberFormatter::DECIMAL );
$fmt->format(1234567.891234567890000);
if(
intl_is_failure($fmt->getErrorCode()) {
    
report_error("Formatter error");
}
?>


add a note add a note User Contributed Notes
NumberFormatter::getErrorMessage
There are no user contributed notes for this page.

NumberFormatter::getLocale> <NumberFormatter::getErrorCode
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites