downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionProperty::isPublic> <ReflectionProperty::isPrivate
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionProperty::isProtected

(PHP 5)

ReflectionProperty::isProtectedChecks if property is protected

Descrizione

public bool ReflectionProperty::isProtected ( void )

Checks whether the property is protected.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

TRUE if the property is protected, FALSE otherwise.

Vedere anche:



add a note add a note User Contributed Notes ReflectionProperty::isProtected - [1 notes]
up
0
Ievgen Iefimenko the_boss at bk dot ru
11 months 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();
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites