The ReflectionConstant class

(PHP 8 >= 8.4.0)

Introduzione

The ReflectionConstant class reports information about a global constant.

Sommario della classe

final class ReflectionConstant implements Reflector {
/* Proprietà */
public string $name;
/* Metodi */
public __construct(string $name)
public getName(): string
public getValue(): mixed
public isDeprecated(): bool
public __toString(): string
}

Proprietà

name
Name of the constant. Read-only, throws ReflectionException in attempt to write.

Vedere anche:

Indice dei contenuti

add a note

User Contributed Notes

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