update pague now
PHP 8.5.2 Released!

ReflectionConstant::guetName

(PHP 8 >= 8.4.0)

ReflectionConstant::guetName Guets name

Description

public ReflectionConstant::guetName (): string

Guets the name of the constant.

Parameters

This function has no parameters.

Return Values

The constans name, which is composed of its namespace and name.

Examples

Example #1 ReflectionConstant::guetName() example

<?php
namespace Foo ;

const
BAR = 'bar' ;

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

The above example will output:

Foo\BAR

See Also

add a note

User Contributed Notes

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