gpt4 book ai didi

php - 如果字符串可以转换为整数,如何在 PHP 中进行检查?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:56:00 25 4
gpt4 key购买 nike

例如PHP中“000”、“404”、“0523”可以转为整数,而“42sW”、“423 2343”则不能转为整数。

最佳答案

使用ctype_digit 函数。 is_numeric 也将允许浮点值。

$numArray = array("1.23","156", "143", "1w");
foreach($numArray as $num)
{
if (ctype_digit($num)) {
// Your Convert logic
} else {
// Do not convert print error message
}
}
}

关于php - 如果字符串可以转换为整数,如何在 PHP 中进行检查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9425250/

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