注意,比较 ReflectionParameter::getType() 和 gettype() 会导致不同结果,因为它们对于给定类型不会返回相同的结果。
string - string // OK
int - integer // 类型不匹配
bool - boolean // 类型不匹配
array - array // OK
(PHP 4, PHP 5, PHP 7, PHP 8)
gettype — 获取变量的类型
value
要进行类型检查的变量。
返回字符串的可能值为
"boolean"
"integer"
"double"
(出于历史原因,"double"
在 浮点 情况下返回,而不是简单的 "float"
)"string"
"array"
"object"
"resource"
"resource (closed)"
自 PHP 7.2.0 起"NULL"
"unknown type"
版本 | 描述 |
---|---|
7.2.0 | 关闭的资源现在报告为 'resource (closed)' 。以前,关闭资源的返回值为 'unknown type' 。 |
示例 #1 gettype() 示例
<?php
$data = array(1, 1., NULL, new stdClass, 'foo');
foreach ($data as $value) {
echo gettype($value), "\n";
}
?>
上面的示例将输出类似于
integer double NULL object string
注意,比较 ReflectionParameter::getType() 和 gettype() 会导致不同结果,因为它们对于给定类型不会返回相同的结果。
string - string // OK
int - integer // 类型不匹配
bool - boolean // 类型不匹配
array - array // OK