La función ReflectionExtension::getName() es una función incorporada en PHP que se usa para devolver el nombre de la extensión especificada.
Sintaxis:
string ReflectionExtension::getName( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el nombre de la extensión especificada.
Los siguientes programas ilustran la función ReflectionExtension::getName() en PHP:
Programa_1:
<?php // Defining an extension $A = 'DOM'; // Using ReflectionExtension() over the // specified extension $extension = new ReflectionExtension($A); // Calling the getName() function $B = $extension->getName(); // Getting the name of the // specified extension var_dump($B); ?>
Producción:
string(3) "dom"
Programa_2:
<?php // Using ReflectionExtension() over // a extension xml $extension = new ReflectionExtension('xml'); // Calling the getName() function and // Getting the name of the specified extension var_dump($extension->getName()); ?>
Producción:
string(3) "xml"
Referencia: https://www.php.net/manual/en/reflectionextension.getname.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA