ReflectionProperty::isProtected

(PHP 5)

ReflectionProperty::isProtectedChecks if property is protected

Description

public bool ReflectionProperty::isProtected ( void )

Checks whether the property is protected.

Parameters

This function has no parameters.

Return Values

TRUE if the property is protected, FALSE otherwise.

See Also

Коментарии

<?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();
?>
2012-06-10 00:44:09
http://php5.kiev.ua/manual/ru/reflectionproperty.isprotected.html

    Поддержать сайт на родительском проекте КГБ