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

search for in the

NumberFormatter::getLocale> <NumberFormatter::getErrorCode
[edit] Last updated: Fri, 17 May 2013

view this page in

NumberFormatter::getErrorMessage

numfmt_get_error_message

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

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

Descrição

Estilo orientado à objeto

string NumberFormatter::getErrorMessage ( void )

Estilo procedural

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");
}
?>

Veja Também



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

 
show source | credits | sitemap | contact | advertising | mirror sites