ReflectionProperty::isProtected
(PHP 5, PHP 7, PHP 8)
ReflectionProperty::isProtected — protected プロパティであるかどうかを調べる
パラメータ
この関数にはパラメータはありません。
戻り値
protected プロパティである場合に true
、それ以外の場合に false
を返します。
注意: これはデフォルトのアクセス権のみを参照します。
set
のアクセス権 は指定されていても無視されることに注意してください。
参考
- ReflectionProperty::isPublic() - public プロパティであるかどうかを調べる
- ReflectionProperty::isPrivate() - private プロパティであるかどうかを調べる
- ReflectionProperty::isReadOnly() - プロパティが readonly かを調べる
- ReflectionProperty::isStatic() - staticプロパティであるかどうかを調べる
+add a note
User Contributed Notes 1 note
Ievgen Iefimenko the_boss at bk dot ru ¶
12 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();
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google