ReflectionExtension::getClassNames

(PHP 5, PHP 7)

ReflectionExtension::getClassNamesGets class names

Opis

public ReflectionExtension::getClassNames ( void ) : array

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

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

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

Przykłady

Przykład #1 ReflectionExtension::getClassNames() example

<?php
$ext 
= new ReflectionExtension('XMLWriter');
var_dump($ext->getClassNames());
?>

Powyższy przykład wyświetli coś podobnego do:

array(1) {
  [0]=>
  string(9) "XMLWriter"
}

Zobacz też:

add a note add a note

User Contributed Notes

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