|
|
|
รูปแบบนี้<td><?=$budget['money'];?></td> ใช้ number_format ยังครับ ให้ออกเลข x,000.00 |
|
|
|
|
|
|
|
เดาๆเอาออกมาแล้ว อิอิ
Code (PHP)
number_format($budget['money'],2);
echo number_format($sumBudget,2);
|
|
|
|
|
Date :
2012-07-17 09:05:01 |
By :
gto440charger |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หลากหลายตัวอย่าง
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
?>
|
|
|
|
|
Date :
2012-07-17 20:56:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|