|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-08-17 04:53 UTC] vrana@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 14:00:01 2025 UTC |
Description: ------------ The class ReflectionFunctionAbstract isn't documented at all. A comment to the ReflectionMethod class lets me to guess this class be defined as follows: abstract class ReflectionFunctionAbstract { private void function __clone() public string function getName() public bool function isInternal() public bool function isUserDefined() public string function getFileName() public int function getStartLine() public int function getEndLine() public string function getDocComment() public array[string]mixed function getStaticVariables() public bool function returnsReference() public array[int]ReflectionParameter function getParameters() public int function getNumberOfParameters() public int function getNumberOfRequiredParameters() } The comment inside ReflectionMethod // Inherited from ReflectionFunction should the read // Inherited from ReflectionFunctionAbstract