<?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();
?>
(PHP 5, PHP 7)
ReflectionProperty::isProtected — Checks if property is protected
Checks whether the property is protected.
Această funcție nu are parametri.
true
if the property is protected, false
otherwise.
<?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();
?>