ReflectionProperty::isPromoted
(PHP 8)
ReflectionProperty::isPromoted — プロパティがコンストラクタの引数から昇格したものかを調べる
パラメータ
この関数にはパラメータはありません。
例
例1 ReflectionProperty::isPromoted() の例
<?php
class Foo {
public $baz;
public function __construct(public $bar) {}
}
$o = new Foo(42);
$o->baz = 42;
$ro = new ReflectionObject($o);
var_dump($ro->getProperty('bar')->isPromoted());
var_dump($ro->getProperty('baz')->isPromoted());
?>
上の例の出力は以下となります。
bool(true) bool(false)
参考
- ReflectionProperty::isDefault() - デフォルトプロパティであるかどうかを調べる
- ReflectionProperty::isInitialized() - プロパティが初期化されているかをチェックする
- ReflectionProperty::getValue() - 値を取得する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google