ReflectionClass::getExtensionName
(PHP 5, PHP 7, PHP 8)
ReflectionClass::getExtensionName — クラスを定義する拡張モジュールの名前を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
クラスを定義する拡張モジュールの名前を返します。
ユーザー定義のクラスの場合は false
を返します。
例
例1 ReflectionClass::getExtensionName() の基本的な使用例
<?php
$class = new ReflectionClass('ReflectionClass');
$extension = $class->getExtensionName();
var_dump($extension);
?>
上の例の出力は以下となります。
string(10) "Reflection"
+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