|
|
|
จุดทศนิยม รับค่าจาก json มาโชว์แล้ว .ทศนิยมเยอะมากไม่รู้มาจากไหน ทั้งที่ ตอนQueryออกมาจากฐานก็แค่ 2 ตัว ค่ะ (PHP) |
|
|
|
|
|
|
|
number_format
จะกี่จุดก็กำหนดเอา
Code (PHP)
number_format('1234.567891234', 2);// result 1234.56
|
|
|
|
|
Date :
2017-03-26 20:06:44 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง function js นี้ไปใช้ดูครับ
วิธีใช้
Code (JavaScript)
var t_num = 1234.56789;
t_num.format(2);
console.log(t_num);
Code (JavaScript)
Number.prototype.format = function(n, x) {
var re = '\\d(?=(\\d{' + (x || 3) + '})+' + (n > 0 ? '\\.' : '$') + ')';
return this.toFixed(Math.max(0, ~~n)).replace(new RegExp(re, 'g'), '$&,');
};
|
|
|
|
|
Date :
2017-03-26 21:51:21 |
By :
thesin18598 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|