ReflectionFunctionAbstract::getFileName

(PHP 5, PHP 7)

ReflectionFunctionAbstract::getFileNameGets file name

설명

public string ReflectionFunctionAbstract::getFileName ( void )

Gets the file name from a user-defined function.

Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

이 함수는 인수가 없습니다.

반환값

The file name.

참고

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