CakeFest 2025 Madrid: The Official CakePHP Conference

ReflectionProperty::isPromoted

(PHP 8)

ReflectionProperty::isPromotedChecks if property is promoted

Description

public ReflectionProperty::isPromoted(): bool

Checks whether the property is promoted

Parameters

This function has no parameters.

Return Values

true if the property is promoted, false otherwise.

Examples

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());
?>

The above example will output:

bool(true)
bool(false)

See Also

add a note

User Contributed Notes

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

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant