on Linux you may need to install icu-data-full package for NumberFormatter to work properly with non-english locales.
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
NumberFormatter::format -- numfmt_format — Bir sayıyı biçemler
Nesne yönelimli kullanım
$sayı
, int $tür
= NumberFormatter::TYPE_DEFAULT): string|falseYordamsal kullanım
$biçemleyici
, int|float $sayı
, int $tür
= NumberFormatter::TYPE_DEFAULT): string|falseBir sayıyı biçemleyici kurallarına uygun olarak biçemler.
biçemleyici
NumberFormatter nesnesi.
sayı
Biçemlenecek sayı. int veya float türünde olabilir, diğer türler bir sayısal türe dönüştürülür.
tür
Kullanılacak
biçemleme türü.
NumberFormatter::TYPE_CURRENCY
sabitinin
desteklenmediği unutulmamalı, yerine
NumberFormatter::formatCurrency() kullanılmalıdır.
Bir hata oluşursa false
, aksi takdirde biçemlenmiş değeri içeren dizge
döner.
Örnek 1 - numfmt_format() örneği
<?php
$fmt = numfmt_create( 'tr_TR', NumberFormatter::DECIMAL );
$data = numfmt_format($fmt, 1234567.891234567890000);
if(intl_is_failure(numfmt_format($fmt))) {
report_error("Biçemleyici hatası");
}
?>
Örnek 2 - Nesne yönelimli kullanım örneği
<?php
$fmt = new NumberFormatter( 'tr_TR', NumberFormatter::DECIMAL );
$fmt->format(1234567.891234567890000);
if(intl_is_failure($fmt->getErrorCode())) {
report_error("Biçemleyici hatası");
}
?>
Yukarıdaki örneğin çıktısı:
1.234.567,891
Bilginize:
Bu biçimlendirme yöntemiyle elde edilebilen biçimler, temel ICU kütüphanesinin, para birimini dar para birimi simgesiyle biçimlendirmek gibi, olanaklarını tam olarak kullanamaz.
Tüm olanaklar için msgfmt_format_message() kullanılabilir.
on Linux you may need to install icu-data-full package for NumberFormatter to work properly with non-english locales.