ReflectionExtension
PHP Manual

ReflectionExtension::getName

(PHP 5)

ReflectionExtension::getNameGets extension name

説明

public string ReflectionExtension::getName ( void )

Gets the extensions name.

パラメータ

この関数にはパラメータはありません。

返り値

The extensions name.

例1 ReflectionExtension::getName example

<?php
$ext 
= new ReflectionExtension('mysqli');
var_dump($ext->getName());
?>

上の例の出力は、 たとえば以下のようになります。

string(6) "mysqli"

参考


ReflectionExtension
PHP Manual