PHP ReflectionProperty::hasType 反射函数
-
定义和用法
ReflectionProperty::hasType - 检查属性是否具有类型 -
版本支持
PHP4 PHP5 PHP7 不支持 不支持 v7.4.0+支持 -
语法
ReflectionProperty::hasType( [ object $object ] )
ReflectionProperty::hasType() 检查属性是否具有与其关联的类型。 -
参数
参数 必需的 描述 无 -
返回值
如果指定了类型,则为TRUE,否则为FALSE。 -
示例
class User { public string $name; } $rp = new ReflectionProperty('User', 'name'); var_dump($rp->hasType());
-