在PHP中,gettype()
函数用于获取变量的类型。它接受一个变量作为参数,并返回表示该变量类型的字符串。这对于确定变量类型以及在代码中处理不同类型的值非常有用。
gettype()
函数支持的返回值包括:
- “integer”:表示整型
- “double” 或 “float”:表示浮点型
- “string”:表示字符串类型
- “boolean”:表示布尔类型
- “array”:表示数组类型
- “object”:表示对象类型
- “resource”:表示资源类型
- “NULL”:表示空类型
示例:
$integer = 42; $string = "Hello, World!"; $array = array(1, 2, 3); echo gettype($integer); // 输出 "integer" echo gettype($string); // 输出 "string" echo gettype($array); // 输出 "array"