ReflectionExtension::getClassNames

(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:

ReflectionExtension::getClasses() -

ReflectionExtension::getName() -

doc_php
2016-02-24 16:13:29
Comments
Leave a Comment

Please login to continue.