NumberFormatter::getErrorCode

numfmt_get_error_code

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

NumberFormatter::getErrorCode -- numfmt_get_error_codeGet formatter's last error code.

설명

객체 기반 형식

public int NumberFormatter::getErrorCode ( void )

절차식 형식

int numfmt_get_error_code ( NumberFormatter $fmt )

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

인수

fmt

NumberFormatter object.

반환값

Returns error code from last formatter call.

예제

Example #1 numfmt_get_error_code() 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");
}
?>

Example #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

There are no user contributed notes for this page.
To Top