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()
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:

ReflectionClass::getExtension() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.