(PHP 5, PHP 7)
Gets the name of the extension which defined the class
public string ReflectionClass::getExtensionName ( void )
Gets the name of the extension which defined the class.
Returns:
The name of the extension which defined the class, or FALSE
for user-defined classes.
Examples:
Basic usage of ReflectionClass::getExtensionName()
1 2 3 4 5 | <?php $class = new ReflectionClass( 'ReflectionClass' ); $extension = $class ->getExtensionName(); var_dump( $extension ); ?> |
The above example will output:
string(10) "Reflection"
See also:
Please login to continue.