No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

NumberFormatter: : getErrorMessage

numfmt_get_error_message

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

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

PHP: NumberFormatter::getErrorMessage - Manual Home of Manuel PHP  Contents Haut

Description

Object oriented style

public NumberFormatter::getErrorMessage ( void ) : string

Procedural style

numfmt_get_error_message ( NumberFormatter $fmt ) : string

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

PHP: NumberFormatter::getErrorMessage - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns error message from last formatter call.

PHP: NumberFormatter::getErrorMessage - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 numfmt_get_error_message() example

<?php
$fmt 
numfmt_create'de_DE'NumberFormatter::DECIMAL );
$data numfmt_format($fmt1234567.891234567890000);
var_dump(numfmt_get_error_message($fmt));
?>

Example #2 OO example

<?php
$fmt 
= new NumberFormatter'de_DE'NumberFormatter::DECIMAL );
$fmt->format(1234567.891234567890000);
var_dump(numfmt_get_error_message($fmt));
?>

PHP: NumberFormatter::getErrorMessage - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph