判断一个数组里面的所有键所对应的值是否是为int型

<?php
$tests = array(
"sdas"=>13
);
foreach ($tests as $element) {
if (is_numeric($element)) {
echo "'{$element}' is numeric", PHP_EOL;
} else {
echo "'{$element}' is NOT numeric", PHP_EOL;
}
}
?>
//http://www.nowamagic.net/librarys/veda/detail/2023

上一篇:PHP – 必须使用is_numeric(),还是可以使用比较符号来处理所有正数字情况?


下一篇:【剑指Offer】面试题20. 表示数值的字符串