Home >php教程 >php手册 >PHP查看当前变量类型的方法

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

WBOY
WBOYOriginal
2016-06-13 08:52:211197browse

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');

 

?>

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