PHP ReflectionProperty::getType 反射函数

  • 定义和用法

    ReflectionProperty::getType - 获取属性的类型
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 不支持 v7.4.0+支持
  • 语法

    ReflectionProperty::getType( void )
    ReflectionProperty::getType() 如果属性具有类型,则返回ReflectionType,否则返回NULL。
  • 参数

    参数 必需的 描述
  • 返回值

    反射的属性的名称。
  • 示例

    class User
    {
            public string $name;
    }
    
    $rp = new ReflectionProperty('User', 'name');
    echo $rp->getType()->getName();
    
  • 相关页面

    ReflectionProperty::hasType() - 检查属性是否具有类型
    ReflectionProperty::isInitialized() - 检查属性是否已初始化