(PHP 5, PHP 7)
ReflectionExtension::getClassNames — Gets class names
public ReflectionExtension::getClassNames ( ) : array
Gets a listing of class names as defined in the extension.
This function has no parameters.
An array of class names, as defined in the extension. If no classes are defined, an empty array is returned.
Example #1 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" }
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionextension.getclassnames.php