ReflectionConstant::getShortName

Gets short name

Description

public string ReflectionConstant::getShortName()

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

Parameters

This function has no parameters.

Return Values

The short name of the constant.

Examples

Example #1 ReflectionConstant::getShortName example

<?php
namespace Foo;

const BAR = 'bar';

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

The above example will output:

BAR

See Also

  • ReflectionConstant::getName