ReflectionFunctionAbstract::getFileName

(PHP 5)

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