|
|
|
อยากให้แสดงตัวเลขเป็นทศนิยมสองตำแหน่งทำยังไงครับ.. $x+$y แล้วอยากไห้แสดงเป็นทศนิยม 2 ตำแหน่งครับ เช่น 9.00 |
|
|
|
|
|
|
|
Code (PHP)
number_format($total,2);
|
|
|
|
|
Date :
2011-09-02 13:06:49 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$value=300;
printf("%.2f",$value);
?>
//หรือ
<?php
$number=500;
echo number_format($number,2);
?>
|
|
|
|
|
Date :
2011-09-02 13:08:35 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2013-02-04 00:42:36 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
?>
ใน Version ใหม่ ๆ ทำอะไรได้มากกว่าเดิม
|
|
|
|
|
Date :
2013-02-04 09:29:30 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|