本篇内容主要讲解“php如何将值转为整数”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“php如何将值转为整数”吧!
方法:1、在值之前加上“(int)”或“(integer)”,例“3.14(int)”;2、用intval()函数,语法“intval(值)”;3、用ceil()函数,语法“ceil(值)”;4、用floor函数,语法“floor(值)”。
本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑
php将值转为整数
1、在值之前加上“(int)”或“(integer)”
<?php$str = '123.456abc';$int = (int)$str;echo $int."<br>";$float = 3.14;$int = (integer)$float;echo $int."<br>";?>
2、使用intval()函数
<?php$str = '123.456abc';$int = intval($str);echo $int."<br>";$float = 5.64;$int = intval($float);echo $int."<br>";$bool = true;$int = intval($bool);echo $int."<br>";?>
3、使用ceil()函数
ceil()函数用于向上取整,有小数就整数部分加1
<?phpheader("Content-type:text/html;charset=utf-8"); $num = 123.456;$int = ceil($num);echo '变量 $int 的类型为:'.gettype($int).'<br>';echo $int;?>
4、使用floor函数
floor函数用于向下取整
<?phpheader("Content-type:text/html;charset=utf-8"); $num = 123.456;$int = floor($num);echo '变量 $int 的类型为:'.gettype($int).'<br>';echo $int;?>
到此,相信大家对“php如何将值转为整数”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!