PHP Conference Japan 2024

ReflectionProperty::isProtected

(PHP 5, PHP 7, PHP 8)

ReflectionProperty::isProtected检查属性是否受保护

描述

public ReflectionProperty::isProtected(): bool

检查属性是否受保护。

参数

此函数没有参数。

返回值

如果属性受保护,则返回true,否则返回false

注意: 请注意,这仅指主要可见性,而不指设置可见性(如果指定)。

参见

添加注释

用户贡献的注释 1 条注释

2
Ievgen Iefimenko the_boss at bk dot ru
12 年前
<?php

/**
* 如果属性是 public,则返回 1,
* 否则返回 void
*/

class Classname{
private
$variable;
}

$obj = new Classname;
$rp = new ReflectionProperty($obj,'variable');
echo
$rp->isPrivate();
?>
To Top