在PHP中,gettype()
函数用于获取变量的类型。它接受一个变量作为参数,并返回表示该变量类型的字符串。这对于确定变量类型以及在代码中处理不同类型的值非常有用。
gettype()
函数支持的返回值包括:
示例:
$integer = 42;
$string = "Hello, World!";
$array = array(1, 2, 3);
echo gettype($integer); // 输出 "integer"
echo gettype($string); // 输出 "string"
echo gettype($array); // 输出 "array"