gpt4 book ai didi

php - is_numeric 函数给出了意想不到的结果

转载 作者:行者123 更新时间:2023-12-03 23:06:57 25 4
gpt4 key购买 nike

我写了下面的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com