ReflectionExtension::getClassNames

(PHP 5)

ReflectionExtension::getClassNamesGets class names

Опис

public array ReflectionExtension::getClassNames ( void )

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

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

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

Приклади

Приклад #1 ReflectionExtension::getClassNames() example

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

Наведений вище приклад виведе щось подібне до:

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

Прогляньте Також

add a note add a note

User Contributed Notes

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