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

PHP intval bcmul 方法变了

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-23 13:49:44
Original
1258 people have browsed it

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



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


Related labels:
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template