ReflectionProperty::isPromoted

(PHP 8)

ReflectionProperty::isPromotedChecks if property is promoted

Beschreibung

public ReflectionProperty::isPromoted(): bool

Checks whether the 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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top