(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:
Please login to continue.