从变量中删除分数
Delete fraction from variable
我想要这个问题的解决方案。
这是我的代码:
<?php
$cc = mysql_fetch_array(mysql_query("select count(id) as cc from table"));
$cc = htmlentities($cc['cc']);
$cn = $cc/25;
?>
$cn的总和是2.04。
我想要一个解决方案来删除这个变量的小数部分。
我想要这个问题的解决方案。
这是我的代码:
<?php
$cc = mysql_fetch_array(mysql_query("select count(id) as cc from table"));
$cc = htmlentities($cc['cc']);
$cn = $cc/25;
?>
$cn的总和是2.04。
我想要一个解决方案来删除这个变量的小数部分。