<?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 — بررسی حفاظت شدن خاصیت
Description
public bool ReflectionProperty::isProtected
( void
)
بررسی حفاظت شدن خاصیت.
Parameters
This function has no parameters.
Return Values
TRUE بررسی حفاظت شدن خاصیت FALSE در غیر این صورت.
Ievgen Iefimenko the_boss at bk dot ru ¶
11 months ago
