ReflectionFunctionAbstract::getFileName

(PHP 5 >= 5.2.0, PHP 7)

ReflectionFunctionAbstract::getFileNameGets file name

Opis

public ReflectionFunctionAbstract::getFileName ( void ) : string

Gets the file name from a user-defined 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 file name.

Zobacz też:

add a note add a note

User Contributed Notes 1 note

up
1
stein at visibone dot com
10 years ago
Returns FALSE for an internal function (when isInternal() returns TRUE, e.g. for 'strlen').
To Top