|
|
|
NUmber_format มีแบบ 1,234.57 มี comma กับ point อยู่ด้วยกันเป็นไปได้มั้ยครัย |
|
|
|
|
|
|
|
Code (PHP)
<?php
$number = 1234.56;
// english notation (default)
$english_format_number = number_format($number);
// 1,235
// French notation
$nombre_format_francais = number_format($number, 2, ',', ' ');
// 1 234,56
$number = 1234.5678;
// english notation without thousands seperator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57
?>
มีแบบ 1,234.57
มี comma กับ point อยู่ด้วยกันเป็นไปได้มั้ยครัย
Tag : PHP, JavaScript
|
|
|
|
|
|
Date :
2012-10-11 10:15:48 |
By :
praphat_thekop |
View :
1042 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$english_format_number = number_format($number, 2, '.', ',');
|
|
|
|
|
Date :
2012-10-11 11:02:38 |
By :
thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|