La función Reflection::getShortName() es una función incorporada en PHP que se usa para devolver el nombre corto de la clase especificada, la parte sin el espacio de nombres.
Sintaxis:
string Reflection::getShortName( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el nombre abreviado de la clase especificada, la parte sin el espacio de nombres.
Los siguientes programas ilustran la función Reflection::getShortName() en PHP:
Programa 1:
<?php // Defining a namespace and class GFG namespace A\B; class GFG{ } // Using ReflectionClass over the namespace and // specified class GFG $ReflectionClass = new \ReflectionClass('A\\B\\GFG'); // Calling getShortName() function $A = $ReflectionClass->getShortName(); // Getting the short name of the specified class var_dump($A); ?>
Producción:
string(3) "GFG"
Programa 2:
<?php // Using ReflectionClass inbuilt function $ReflectionClass = new ReflectionClass('ReflectionClass'); // Calling getShortName() functions $A = $ReflectionClass->getShortName(); // Getting the short name of the specified class var_dump($A); ?>
Producción:
string(15) "ReflectionClass"
Referencia: https://www.php.net/manual/en/reflectionclass.getshortname.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