Home  >  Article  >  Backend Development  >  PHP查看当前变量类型的方法_PHP教程

PHP查看当前变量类型的方法_PHP教程

WBOY
WBOYOriginal
2016-07-12 09:06:19776browse

PHP查看当前变量类型的方法

is_array
is_bool
is_callable
is_double
is_float
is_int
is_integer
is_long
is_null
is_numeric
is_object
is_real
is_resource
is_scalar
is_string
 
列子:
 
$sum=6;
echo ( is_string($sum) ? 'true' : 'false');
 
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1065652.htmlTechArticlePHP查看当前变量类型的方法 is_array is_bool is_callable is_double is_float is_int is_integer is_long is_null is_numeric is_object is_real is_resource is_scalar is_string 列...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn