反射类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
posted on 2009-06-28 15:00
期待明天 阅读(626)
评论(0) 编辑 收藏 所属分类:
PHP