ReflectionClass::getExtensionName

(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()
<?php
$class = new ReflectionClass('ReflectionClass');
$extension = $class->getExtensionName();
var_dump($extension);
?>

The above example will output:

string(10) "Reflection"
See also:

ReflectionClass::getExtension() -

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

Please login to continue.