- PHP 手册
- 函数参考
- 变量与类型相关扩展
- 反射
- ReflectionProperty
ReflectionProperty::isPrivate
(PHP 5, PHP 7, PHP 8)
ReflectionProperty::isPrivate — Checks if property is private
说明
public ReflectionProperty::isPrivate(): boolChecks whether the property is private.
参数
此函数没有参数。
返回值
true
if the property is private, false
otherwise.
参见
- ReflectionProperty::isPublic() - Checks if property is public
- ReflectionProperty::isProtected() - Checks if property is protected
- ReflectionProperty::isReadOnly() - 检查属性是否为只读
- ReflectionProperty::isStatic() - Checks if property is static
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/reflectionproperty.isprivate.php