码迷,mamicode.com
首页 > Web开发 > 详细

php 的 number_format使用

时间:2018-06-04 16:46:14      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:nbsp   mat   div   number   form   使用   1.0   span   color   

$num = 1.0258963147;

// 1.0259
$num = number_format($num, 4, ‘.‘, ‘‘);

// 1
$num = number_format($num);


$num = 50000;

// 50,000
$num = number_format($num);

// 50000.00
$num = number_format($num, 2, ‘.‘, ‘‘);

 

php 的 number_format使用

标签:nbsp   mat   div   number   form   使用   1.0   span   color   

原文地址:https://www.cnblogs.com/arvin-an/p/9133052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!