ReflectionProperty::getRawValue

(PHP 8 >= 8.4.0)

ReflectionProperty::getRawValueReturns the value of a property, bypassing a get hook if defined

説明

public ReflectionProperty::getRawValue(object $object): mixed
警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

Returns the value of a property, bypassing a get hook if defined.

パラメータ

object
The object from which to retrieve a value.

戻り値

The stored value of the property, bypassing a get hook if defined.

エラー / 例外

If the property is virtual, an Error will be thrown, as there is no raw value to retrieve.

例1 ReflectionProperty::getRawValue() example

<?php
class Example
{
public
string $tag {
get => strtolower($this->tag);
}
}

$example = new Example();
$example->tag = 'PHP';

$rClass = new \ReflectionClass(Example::class);
$rProp = $rClass->getProperty('tag');

// These would go through the get hook, so would produce "php".
print $example->tag;
print
$rProp->getValue($example);

// But this would bypass the hook and produce "PHP".
print $rProp->setRawValue($example);
?>
add a note

User Contributed Notes

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