摘要:php如何将float转int?1、使用函数“intval”将float类型数据转为int类型;$float = 15.222; intval($float);2、使用“settype()”将float类型数据设置为int类型;$float = 15.22
php如何将float转int?
1、使用函数“intval”将float类型数据转为int类型;
$float = 15.222; intval($float);
2、使用“settype()”将float类型数据设置为int类型;
$float = 15.222; settype($float, 'int');
3、在变量前面加上“ (int)”,将其进行强制转换为int。
$float = 15.222; (int) $float;
推荐教程:《PHP》
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13