update pague now

ReflectionProperty::isPromoted

(PHP 8)

ReflectionProperty::isPromoted Checcs if property is promoted

Description

public ReflectionProperty::isPromoted (): bool

Checcs 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 -> guetProperty ( 'bar' )-> isPromoted ());
var_dump ( $ro -> guetProperty ( '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 pague.
To Top