A. php用正则检测整数的话只能输入1或 2 等等不能有小数点 如果有小数点的话只能有一位还只能是5 例0.5 2.5
用这个数* 10 然后判断能被5整除就OK了,我不会PHP的语法,思想是这样的
B. 在php中,如何获取小数点后面的数字
使用字符串截取函数explode,因为PHP是弱类型语言,所以可以直接使用
<?
$x=98.6;
$y=explode(".",$x);
echo$y[0]."------";//98
echo$y[1];//6
?>
C. PHP怎么定义保留2位小数的变量
在php中要保留两位小数的方法有很多种办法,有如:printf,substr,number_format,round等等方法
方法一
sprintf()函数 ,sprintf() 函数把格式化的字符串写写入一个变量中
<?php
$number=123;
$txt=sprintf("%f",$number);
echo$txt;
?>
输出:
123.000000
方法二substr()函数
$num=123213.666666;
echosprintf("%.2f",substr(sprintf("%.3f",$num),0,-2));
方法三 number_format()函数
$number=1234.5678;
$nombre_format_francais=number_format($number,2,',','');//1234,57
$english_format_number=number_format($number,2,'.','');//1234.57(我一般用这个)
方法四 round 函数,round() 函数对浮点数进行四舍五入。
<?php
echo(round(0.60));
echo(round(0.50));
echo(round(0.49));
echo(round(-4.40));
echo(round(-4.60));
?>
输出:
1
1
0
-4
-5
如果要保留小数,后来参数根保留小数位数即可。
$number=1234.5678;
echoround($number,2);//1234.57
D. php计算后如何取小数点前面的
<?php echo ceil($kkoi+$userid); ?>
上述ceil是系统四舍五入方法
E. php 科学计算法 科学记数法 E 保留 小数位数
#舍去
echofloor(4.3);//4
#进一
echoceil(4.3);//5
#四舍五入
echoround(3.4);//3
echoround(3.5);//4
F. PHP初学者,四舍五入并且保留1位小数的函数
<?php
echoround(1.23547,1);//得到1.2
G. PHP 如何保留1位小数而且不四舍五入
先使用number_format取小数位数后三位,再进行字符串截取
//千分位逗号分隔,获取小数点后1位
substr(number_format($price, 3, '.',','),0,-2);
H. php如何保留一位小数,包括0,内详
number_format(变量,保留位数)