update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the name of the extension which defined the class

ReflectionClass::getExtensionName

(PHP 5)

ReflectionClass::getExtensionNameGets the name of the extension which defined the class

설명

public string ReflectionClass::getExtensionName ( void )

Gets the name of the extension which defined the class.

인수

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

반환값

The name of the extension which defined the class, or FALSE for user-defined classes.

예제

Example #1 Basic usage of ReflectionClass::getExtensionName()

<?php
$class 
= new ReflectionClass('ReflectionClass');
$extension $class->getExtensionName();
var_dump($extension);
?>

위 예제의 출력:

string(10) "Reflection"

참고