反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。
<?php
$class=new ReflectionClass("ReflectionClass");
$methods=$class->getMethods();
foreach($methods as $method)
echo $method->getName()."<br>";
?>
运行结果如下:
__clone
export
__construct
__toString
getName
isInternal
isUserDefined
isInstantiable
getFileName
getStartLine
getEndLine
getDocComment
getConstructor
hasMethod
getMethod
getMethods
hasProperty
getProperty
getProperties
hasConstant
getConstants
getConstant
getInterfaces
getInterfaceNames
isInterface
isAbstract
isFinal
getModifiers
isInstance
newInstance
newInstanceArgs
getParentClass
isSubclassOf
getStaticProperties
getStaticPropertyValue
setStaticPropertyValue
getDefaultProperties
isIterateable
implementsInterface
getExtension
getExtensionName
<?php
$class=new ReflectionClass("ReflectionClass");
$methods=$class->getMethods();
foreach($methods as $method)
echo $method->getName()."<br>";
?>
运行结果如下:
__clone
export
__construct
__toString
getName
isInternal
isUserDefined
isInstantiable
getFileName
getStartLine
getEndLine
getDocComment
getConstructor
hasMethod
getMethod
getMethods
hasProperty
getProperty
getProperties
hasConstant
getConstants
getConstant
getInterfaces
getInterfaceNames
isInterface
isAbstract
isFinal
getModifiers
isInstance
newInstance
newInstanceArgs
getParentClass
isSubclassOf
getStaticProperties
getStaticPropertyValue
setStaticPropertyValue
getDefaultProperties
isIterateable
implementsInterface
getExtension
getExtensionName
本文介绍了PHP中ReflectionClass类的所有方法,包括构造方法、获取类文件名、判断类是否为内部定义等,并展示了如何使用ReflectionClass获取这些方法的具体名称。
182

被折叠的 条评论
为什么被折叠?



