当前位置:Gxlcms > PHP教程 > PHPintvalbcmul方法变了

PHPintvalbcmul方法变了

时间:2021-07-01 10:21:17 帮助过:3人阅读

        $s = intval(1.2); // int 1        $s = intval(0.85); // int 0        $s = intval(-0.85); // int 0        $s = intval(-300); // int 300        $s = intval(-1.250); // int -1        $s = bcmul(1.2, 1); //string 1        $s = bcmul(0.85, 1); //string 0        $s = bcmul(-0.85, 1); //string -0        $s = bcmul(-300, 1); //string -300        $s = bcmul(-1.250, 1); //string -1        var_dump($s);        exit();



会自动的格式化数值,跟原先的不一样。慎用。

人气教程排行