我有这个PHP代码:
$entityElementCount = (-($highScore-$totalKeywordCount))/0.29;
我想知道的是,如何检查 $ entityElementCount 是整数(2,6,...)还是部分数字(2.33,6.2,...)。
谢谢!
最佳答案
$entityElementCount = (-($highScore-$totalKeywordCount))/0.29;
if (ctype_digit($entityElementCount) ){
// (ctype_digit((string)$entityElementCount)) // as advised.
print "whole number\n";
}else{
print "not whole number\n";
}
关于php - PHP检查变量是否为整数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2188675/