作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了下面的 php 代码,
<?php
$k ="123e5";
if(is_numeric($k)){
echo "is number";
}
else{
echo "is not a number";
}
?>
预期的输出是“不是数字”,因为 e 出现在字符串中。但我得到了输出“是数字”。为什么会这样?请帮助我找到解决方案。
最佳答案
根据 is_numeric 的文档:
Numeric strings consist of optional sign, any number of digits,optional decimal part and optional exponential part. Thus +0123.45e6is a valid numeric value. Hexadecimal (e.g. 0xf4c3b00c), Binary (e.g.0b10100111001), Octal (e.g. 0777) notation is allowed too but onlywithout sign, decimal and exponential part.
所以它得到了正确的输出。
我想你在找integer only .然后使用 is_int()
。
关于php - is_numeric 函数给出了意想不到的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23491454/
我是一名优秀的程序员,十分优秀!