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: Mon, 20 May 2013

view this page in

ReflectionProperty::isProtected

(PHP 5)

ReflectionProperty::isProtectedprotected プロパティであるかどうかを調べる

説明

public bool ReflectionProperty::isProtected ( void )

protected プロパティであるかどうかを調べます。

パラメータ

この関数にはパラメータはありません。

返り値

protected プロパティである場合に TRUE、それ以外の場合に FALSE を返します。

参考



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 | sitemap | contact | advertising | mirror sites