gpt4 book ai didi

PHP 检查对象是否可以转换为整数?

转载 作者:可可西里 更新时间:2023-11-01 12:46:19 24 4
gpt4 key购买 nike

在 PHP 中,似乎每个对象都可以转换为整数,只需调用 intval($object),但这不是我想要的。我想要的是,检查对象是否可以有效地转换为人类认为的整数。

即,有效对象将是

  • 12
  • 12.0
  • “12”
  • “12.0”

无效的是

  • MyFooInstance()
  • “一些字符串”
  • "12.0.0"
  • "0 12.0"

等在 python 中,我可以简单地执行以下操作:

try:
int(var)
except (TypeError, ValueError):
return False
return True

如何在 PHP 中实现这一点?

最佳答案

使用is_numeric .

<?php
$tests = array(
"42",
1337,
"1e4",
"not numeric",
array(),
9.1
);

foreach ($tests as $element) {
if (is_numeric($element)) {
echo "'{$element}' is numeric", PHP_EOL;
} else {
echo "'{$element}' is NOT numeric", PHP_EOL;
}
}
?>


'42' is numeric
'1337' is numeric
'1e4' is numeric
'not numeric' is NOT numeric
'Array' is NOT numeric
'9.1' is numeric

(来自页面)

关于PHP 检查对象是否可以转换为整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9565670/

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