ReflectionClass::getExtension

(PHP 5, PHP 7)
Gets 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.

Returns:

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

Examples:
Basic usage of ReflectionClass::getExtension()
<?php
$class = new ReflectionClass('ReflectionClass');
$extension = $class->getExtension();
var_dump($extension);
?>

The above example will output:

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

ReflectionClass::getExtensionName() -

doc_php
2016-02-24 16:13:20
Comments
Leave a Comment

Please login to continue.