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 ?
Bài liên quan
$num = 13454454.45;
echo number_format($num, 2, ',', '.');
// 13.454.454,45
?>
/*================================*/
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.