PHP 8.4.2 Released!

ReflectionConstant::getShortName

(PHP 8 >= 8.4.0)

ReflectionConstant::getShortNameGets short name

Descrição

public ReflectionConstant::getShortName(): string

Gets the short name of the constant, the part without the namespace.

Parâmetros

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

Valor Retornado

The short name of the constant.

Exemplos

Exemplo #1 ReflectionConstant::getShortName() example

<?php
namespace Foo;

const
BAR = 'bar';

echo (new
\ReflectionConstant('Foo\BAR'))->getName();
?>

O exemplo acima produzirá:

BAR

Veja Também

adicione uma nota

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

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