作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
例如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/
我是一名优秀的程序员,十分优秀!