Dutch PHP Conference 2025 - Call For Papers

ReflectionExtension::getClassNames

(PHP 5, PHP 7, PHP 8)

ReflectionExtension::getClassNamesGets class names

Опис

public ReflectionExtension::getClassNames(): array

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

User Contributed Notes

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