Home  >  Article  >  Backend Development  >  PHP intval bcmul 方法变了

PHP intval bcmul 方法变了

WBOY
WBOYOriginal
2016-06-23 13:49:441041browse

        $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();



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


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn