PHP 7.0.6 Released

ReflectionProperty::isProtected

(PHP 5, PHP 7)

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

User Contributed Notes

Ievgen Iefimenko the_boss at bk dot ru
3 years ago
<?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();
?>
To Top