ReflectionExtension::getClassNames

(PHP 5)

ReflectionExtension::getClassNamesGets class names

Beskrivelse

public array ReflectionExtension::getClassNames ( void )

Gets a listing of class names as defined in the extension.

Parametre

This function has no parameters.

Returnerings Værdier

An array of class names, as defined in the extension. If no classes are defined, an empty array is returned.

Eksempler

Eksempel #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"
}

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top