<?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 — Comprueba si la propiedad está protegida
Descripción
public bool ReflectionProperty::isProtected
( void
)
Comprueba si la propiedad está protegida.
Parámetros
Esta función no tiene parámetros.
Valores devueltos
TRUE si la propiedad está protegida, o si no FALSE.
Ievgen Iefimenko the_boss at bk dot ru ¶
11 months ago
