码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-05-25 16:06:55      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:das   gic   php_eol   一个   http   sda   lib   数组   sts   

<?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型

标签:das   gic   php_eol   一个   http   sda   lib   数组   sts   

原文地址:https://www.cnblogs.com/xieqijiang/p/12956953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!