PHP ReflectionClassConstant::isProtected 反射函数
-
定义和用法
ReflectionClassConstant::isProtected - 检查类常量是否受保护 -
版本支持
PHP4 PHP5 PHP7 不支持 不支持 v7.1.0+支持 -
语法
ReflectionClassConstant::isProtected( void )
ReflectionClassConstant::isProtected() 检查类常量是否受保护 -
参数
参数 必需的 描述 无 -
返回值
如果类常量受保护,则为TRUE,否则为FALSE -
示例
尝试一下class Test{ const a = 'test'; } $reflectionClassConstant = new ReflectionClassConstant('Test','a'); $value = $reflectionClassConstant->isProtected(); var_dump($value);
-
相关页面
ReflectionClassConstant::isPublic() - 检查类常量是否为公共ReflectionClassConstant::isPrivate() - 检查类常量是否为私有