php 保留2位小数 四舍五入处理方法

生活需要梦,但总是睡不醒。

 

$myData = 1234.567;

 

1、number_format

public function dada() {
        $myData = 1234.567;

        echo number_format($myData, 2);
        echo '<hr>';
        echo number_format($myData);
    }

运行结果

  

2、round  第三个参数要注意 - 四舍五入

public function test() {
        $data = 12.4569;
        echo round($data, 2);
    }

运行结果

 

 

  

3、sprintf   返回格式化字符串

    public function test() {
        $num = 5;
        $location = 'tree';

        $format = 'There are %d monkeys in the %s';
        echo sprintf($format, $num, $location);
    }

运行结果

 

 

 

 

4、intval 获取变量的整数值

 

posted @ 2021-09-24 08:58  方达达  阅读(184)  评论(0编辑  收藏  举报