ReflectionExtension::getClassNames
(PHP 5)
ReflectionExtension::getClassNames — Gets class names
Descripción
public array ReflectionExtension::getClassNames
( void
)
Gets a listing of class names as defined in the extension.
Parámetros
Esta función no tiene parámetros.
Valores devueltos
An array of class names, as defined in the extension. If no classes are defined, an empty array is returned.
Ejemplos
Example #1 ReflectionExtension::getClassNames() example
<?php
$ext = new ReflectionExtension('XMLWriter');
var_dump($ext->getClassNames());
?>
El resultado del ejemplo sería algo similar a:
array(1) {
[0]=>
string(9) "XMLWriter"
}
Ver también
- ReflectionExtension::getClasses() - Gets classes
- ReflectionExtension::getName() - Gets extension name
There are no user contributed notes for this page.
