ReflectionProperty::isPromoted
(PHP 8)
ReflectionProperty::isPromoted — Checks if property is promoted
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
true
if the property is promoted, false
otherwise.
Beispiele
Beispiel #1 ReflectionProperty::isPromoted() example
<?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());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
bool(true) bool(false)
Siehe auch
- ReflectionProperty::isDefault() - Checks if property is a default property
- ReflectionProperty::isInitialized() - Checks whether a property is initialized
- ReflectionProperty::getValue() - Gets value