| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
get_declared_classes(PHP 4, PHP 5, PHP 7) get_declared_classes — 定義済のクラスの名前を配列として返す 説明
array get_declared_classes
( void
)
Gets the declared classes. 返り値この関数は、現在のスクリプトで宣言されたクラスの名前の配列を返します。
例
例1 get_declared_classes() の例
<?php 上の例の出力は、 たとえば以下のようになります。 Array ( [0] => stdClass [1] => __PHP_Incomplete_Class [2] => Directory ) 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「get_declared_classes - 定義済のクラスの名前を配列として返す」をGoogle検索
|