PHP 8.4.2 Released!

ReflectionConstant::getValue

(PHP 8 >= 8.4.0)

ReflectionConstant::getValueGets value

Descrição

public ReflectionConstant::getValue(): mixed

Gets the value of the constant.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The value of the constant.

Exemplos

Exemplo #1 ReflectionProperty::getValue() example

<?php
const FOO = 'foo';

var_dump((new \ReflectionConstant('FOO'))->getValue());
?>

O exemplo acima produzirá:

string(3) "foo"
adicione uma nota

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

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