downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionExtension::getConstants> <ReflectionExtension::getClasses
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionExtension::getClassNames

(PHP 5)

ReflectionExtension::getClassNamesGets class names

Beschreibung

public array ReflectionExtension::getClassNames ( void )

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

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

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

Beispiele

Beispiel #1 ReflectionExtension::getClassNames() example

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch



add a note add a note User Contributed Notes ReflectionExtension::getClassNames - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites