ReflectionClass::getExtension

(PHP 5, PHP 7)

ReflectionClass::getExtensionGets a ReflectionExtension object for the extension which defined the class

설명

public ReflectionExtension ReflectionClass::getExtension ( void )

Gets a ReflectionExtension object for the extension which defined the class.

인수

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

반환값

A ReflectionExtension object representing the extension which defined the class, or NULL for user-defined classes.

예제

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

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

위 예제의 출력:

object(ReflectionExtension)#2 (1) {
  ["name"]=>
  string(10) "Reflection"
}

참고

add a note add a note

User Contributed Notes

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