ReflectionProperty::getRawValue

(PHP 8 >= 8.4.0)

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

Descrição

public ReflectionProperty::getRawValue(object $object): mixed
Aviso

Esta função não está documentada; apenas a lista de argumentos está disponível.

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

Parâmetros

object
The object from which to retrieve a value.

Valor Retornado

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

Erros/Exceções

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

Exemplos

Exemplo #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);
?>
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top