|
|
|
วิธีการคำนาณ PHP ??? ผมอยากทราบวิธีการคำนวณครับ |
|
|
|
|
|
|
|
ใส่ number_format() ก็ได้แล้วครับ
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 :
2013-04-09 12:42:15 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับพี่ ^_^
|
|
|
|
|
Date :
2013-04-09 22:37:24 |
By :
aunza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|