ReflectionFunctionAbstract::getName

(PHP 5)

ReflectionFunctionAbstract::getNameGets function name

Beskrivelse

public string ReflectionFunctionAbstract::getName ( void )

Get the name of the function.

Advarsel

This function is currently not documented; only its argument list is available.

Parametre

This function has no parameters.

Returnerings Værdier

The name of the function.

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