ReflectionFunctionAbstract::getFileName

(PHP 5)

ReflectionFunctionAbstract::getFileNameGets file name

Beskrivelse

public string ReflectionFunctionAbstract::getFileName ( void )

Gets the file name from a user-defined function.

Advarsel

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

Parametre

This function has no parameters.

Returnerings Værdier

The file name.

Se også

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