ReflectionExtension::getName

(PHP 5, PHP 7)

ReflectionExtension::getNameGets extension name

설명

public string ReflectionExtension::getName ( void )

Gets the extensions name.

인수

이 함수는 인수가 없습니다.

반환값

The extensions name.

예제

Example #1 ReflectionExtension::getName() example

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

위 예제의 출력 예시:

string(6) "mysqli"

참고

add a note add a note

User Contributed Notes

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