|
|
|
ใช้ number_format พออัพขึ้น host แล้วเลขไม่โชว์ครับ |
|
|
|
|
|
|
|
ลองแบบด้านล่างมาให้ดูหน่อยครับ ว่าได้อะไรบ้าง
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 separator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57
?>
แล้วลอง
money_format(); ให้หน่อย เผื่อเกี่ยวกับ setting ของ server ครับ
|
|
|
|
|
Date :
2014-03-08 20:15:40 |
By :
bruhita 'จารย์บ๊อบบี้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|