ReflectionProperty::isPromoted

(PHP 8)

ReflectionProperty::isPromotedVerifie si la propriété est promue

Description

public ReflectionProperty::isPromoted(): bool

Vérifie si la propriété est promue

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

true si la propriété est promue, false sinon.

Exemples

Exemple #1 Exemple de 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());
?>

L'exemple ci-dessus va afficher :

bool(true)
bool(false)

Voir aussi

add a note

User Contributed Notes

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