$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();
会自动的格式化数值,跟原先的不一样。慎用。
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号