<?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();
?>
ReflectionProperty::isProtected
(PHP 5)
ReflectionProperty::isProtected — Checks if property is protected
Descrição
public bool ReflectionProperty::isProtected
( void
)
Checks whether the property is protected.
Parâmetros
Esta função não possui parâmetros.
Valor Retornado
TRUE if the property is protected, FALSE otherwise.
Ievgen Iefimenko the_boss at bk dot ru ¶
11 months ago
