(PHP 8)
ReflectionProperty::isPromoted — Checks if property is promoted
Questa funzione non contiene parametri.
Example #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());
?>
Il precedente esempio visualizzerà:
bool(true) bool(false)