判断PHP数据类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断PHP数据类型相关的知识,希望对你有一定的参考价值。
常用方式:is_int(), is_float()l, is_numeric(), is_array()...
另一种更快捷的方式:用 === 或 !== ,即全等和不全等运算符来判断。
I‘ve found a faster way of determining an array. If you use is_array() millions of times, you will notice a *huge* difference. On my machine, this method takes about 1/4 the time of using is_array().
Cast the value to an array, then check (using ===) if it is identical to the original.
<?php
if ( (array) $unknown !== $unknown ) {
echo ‘$unknown is not an array‘;
} else {
echo ‘$unknown is an array‘;
}
?>
http://php.net/manual/zh/function.is-array.php
以上是关于判断PHP数据类型的主要内容,如果未能解决你的问题,请参考以下文章