ReflectionFunctionAbstract::getName

(PHP 5 >= 5.2.0, PHP 7)

ReflectionFunctionAbstract::getNameGets function name

Opis

public ReflectionFunctionAbstract::getName ( void ) : string

Get the name of the function.

Ostrzeżenie

Ta funkcja jest obecnie nieudokumentowana, dostępna jest jedynie lista jej argumentów.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

The name of the function.

Zobacz też:

add a note add a note

User Contributed Notes 1 note

up
0
PR
3 years ago
If you call getName() on an anonymous function you'll get "{closure}".
To Top