gettype

更新时间:2022-06-23 08:09

gettype是以string gettype ( mixed var )为函数原型的一种计算机运算方法。

描述

string gettype ( mixed var )

返回PHP变量的类型。

返回值

返回的字符串的可能值为:

boolean”(从 PHP 4 起)

integer

double”(由于历史原因,如果是 float 则返回“double”,而不是“float”)

string

array

object

resource”(从 PHP 4 起)

NULL”(从 PHP 4 起)

“user function”(只用于 PHP 3,现已停用)

“unknown type”

注意

不要使用gettype()来测试某种类型,因为其返回的字符串在未来的版本中可能需要改变。此外,由于包含了字符串的比较,它的运行也是较慢的。

请使用 is_* 函数代替。例如:is_array()、is_bool()、is_float()、is_int()、is_null()、is_object()、is_resource()、is_string()等。

对于 PHP 4,你应该使用 function_exists() 和 method_exists() 取代先前将 gettype() 作用于函数的用法。

建议

但是有时候我们又不得不使用gettype这样的功能来判断参数的类型,这个时候我们应该怎么办?我们可以自己定义一个函数实现这个逻辑。

另一个版本:

免责声明
隐私政策
用户协议
目录 22
0{{catalogNumber[index]}}. {{item.title}}
{{item.title}}