php检测数据类型有几种方法?
How many ways does php detect data types? -PHP Chinese website Q&A-How many methods are there to detect data types in PHP? -PHP Chinese website Q&A
Let’s take a look and learn.
1、输出变量的数据类型(gettype)
<?php $arry = array('a','b','c'); echo gettype($arry);//array ?>
2、输出变量的数据类型、包含的数量以及具体内容(var_dump)
<?php $str = 'hello world'; var_dump($str);//string(11) "hello world" ?>
3、检测某个变量是否是指定的数据类型(is_array、is_string、is_int、is_double等),如果为真返回1,如果为假返回空。
<?php $num = 123; if(is_array($num)){ echo '这是一个数组'; }else if(is_string($num)){ echo '这是一个字符串'; }else if(is_int($num)){ echo '这是一个整数'; }else if(is_double($num)){ echo '这是一个浮点数'; } ?>
How many ways does php detect data types? -PHP Chinese website Q&A-How many methods are there to detect data types in PHP? -PHP Chinese website Q&A
Let’s take a look and learn.
1、输出变量的数据类型(gettype)
2、输出变量的数据类型、包含的数量以及具体内容(var_dump)
3、检测某个变量是否是指定的数据类型(is_array、is_string、is_int、is_double等),如果为真返回1,如果为假返回空。