ReflectionExtension::getClasses
(PHP 5, PHP 7, PHP 8)
ReflectionExtension::getClasses — クラスを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
ReflectionClass オブジェクトの配列を返します。 各要素が、拡張モジュール内のクラスを表します。 クラスが定義されていない場合は空の配列を返します。
例
例1 ReflectionExtension::getClasses() の例
<?php
$ext = new ReflectionExtension('XMLWriter');
var_dump($ext->getClasses());
?>
上の例の出力は、 たとえば以下のようになります。
array(1) { ["XMLWriter"]=> object(ReflectionClass)#2 (1) { ["name"]=> string(9) "XMLWriter" } }
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google