09/10/2018, 23:15

Làm dấu phân cách hàng nghìn

Trong database có fiel Giá bán nội dung 15000000, muốn dùng php xuất ra giá là 15.000.000 thì dùng hàm gì vậy ?
thq viết 01:22 ngày 10/10/2018
Dùng number_format();
an168 viết 01:20 ngày 10/10/2018
Cám ơn bạn rất nhiều, đơn giản vậy mà mò hoài không ra!@hi`hi`
trunglg viết 01:17 ngày 10/10/2018
mà làm sao chuyển dấu phẩy (,) thành dấu chấm (.)được nhỉ ?
mrsinguyenus viết 01:24 ngày 10/10/2018
thì dùng hàm srt_replace gì đó
nguyenthanhhuy19 viết 01:28 ngày 10/10/2018
<?
$num = 13454454.45;
echo number_format($num, 2, ',', '.');
// 13.454.454,45
?>
bangbang1409 viết 01:20 ngày 10/10/2018
Nếu viết bằng ASP thì sẽ làm như thế nào, bạn nào có thể giúp mình được không
nguyenthanhhuy19 viết 01:19 ngày 10/10/2018
FormatCurrency(Expression[,NumDigitsAfterDecimal [,IncludeLeadingDigit [,UseParensForNegativeNumbers [,GroupDigits]]]])

/*================================*/

FormatNumber(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit]]]])

"Expression" is a valid numeric expression;
"Digit" is an optional numeric value used to indicate number of digits to the right of the decimal point;
"LeadingDigit" is an optional tristate value to display a leading zero;
"Paren" is an optional tristat

response.write FormatNumber(45.324567, 3)
=> 45.325

bạn tự mò đi ha. mình chỉ biết đến thế thôi.
Bài liên quan
0