|
|
|
ดึงข้อมูลจาก database เป็นเลขฐาน ใช้ฟังก์ชันอะไรแปลงเป็นตัวเลขธรรมดาครับ |
|
|
|
|
|
|
|
ใช้พวก 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 :
2014-01-08 10:25:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2014-01-08 10:49:18 |
By :
เด็กโง่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|