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

search for in the

ReflectionExtension::getClassNames> <ReflectionExtension::export
[edit] Last updated: Fri, 30 Nov 2012

view this page in

ReflectionExtension::getClasses

(PHP 5)

ReflectionExtension::getClassesGets classes

Opis

public array ReflectionExtension::getClasses ( void )

Gets a list of classes from an extension.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

An array of ReflectionClass objects, one for each class within the extension. If no classes are defined, an empty array is returned.

Przykłady

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

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

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

array(1) {
  ["XMLWriter"]=>
  &object(ReflectionClass)#2 (1) {
    ["name"]=>
    string(9) "XMLWriter"
  }
}

Zobacz też:



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

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