ReflectionProperty
在线手册:中文  英文

ReflectionProperty::isProtected

(PHP 5)

ReflectionProperty::isProtectedChecks if property is protected

说明

public bool ReflectionProperty::isProtected ( void )

Checks whether the property is protected.

参数

此函数没有参数。

返回值

TRUE if the property is protected, FALSE otherwise.

参见


ReflectionProperty
在线手册:中文  英文

用户评论:

Ievgen Iefimenko the_boss at bk dot ru (2012-06-09 21:44:09)

<?php

/**
* Return 1 if property is public,
* else return void
*/

class Classname{
    private 
$variable;
}

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

易百教程