判断一个数组里面的所有键所对应的值是否是为int型
Posted 谢其江
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断一个数组里面的所有键所对应的值是否是为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
以上是关于判断一个数组里面的所有键所对应的值是否是为int型的主要内容,如果未能解决你的问题,请参考以下文章