(PHP 5, PHP 7)
Gets class names
public array ReflectionExtension::getClassNames ( void )
Gets a listing of class names as defined in the extension.
Returns:
An array of class names, as defined in the extension. If no classes are defined, an empty array is returned.
Examples:
ReflectionExtension::getClassNames() example
<?php
$ext = new ReflectionExtension('XMLWriter');
var_dump($ext->getClassNames());
?>
The above example will output something similar to:
array(1) {
[0]=>
string(9) "XMLWriter"
}
See also:
Please login to continue.