The ReflectionFunctionAbstract class

(PHP 5)

簡介

A parent class to ReflectionFunction, read its description for details.

類別摘要

ReflectionFunctionAbstract implements Reflector {
/* 屬性 */
public $name ;
/* 方法 */
final private void __clone ( void )
public ReflectionClass getClosureScopeClass ( void )
public object getClosureThis ( void )
public string getDocComment ( void )
public int getEndLine ( void )
public ReflectionExtension getExtension ( void )
public string getExtensionName ( void )
public string getFileName ( void )
public string getName ( void )
public string getNamespaceName ( void )
public int getNumberOfParameters ( void )
public int getNumberOfRequiredParameters ( void )
public array getParameters ( void )
public string getShortName ( void )
public int getStartLine ( void )
public array getStaticVariables ( void )
public bool inNamespace ( void )
public bool isClosure ( void )
public bool isDeprecated ( void )
public bool isGenerator ( void )
public bool isInternal ( void )
public bool isUserDefined ( void )
public bool returnsReference ( void )
abstract public void __toString ( void )
}

屬性

name

Name of the function. Read-only, throws ReflectionException in attempt to write.

Table of Contents

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top