PHP 7.0.6 Released

ReflectionFunctionAbstract::getFileName

(PHP 5, PHP 7)

ReflectionFunctionAbstract::getFileNameGets file name

Description

public string ReflectionFunctionAbstract::getFileName ( void )

Gets the file name from a user-defined function.

Warning

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

Parameters

This function has no parameters.

Return Values

The file name.

See Also

User Contributed Notes

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