La función Reflection::getName() es una función incorporada en PHP que se usa para devolver el nombre de la clase especificada.
Sintaxis:
string Reflection::getName( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el nombre de la clase especificada.
Los siguientes programas ilustran la función Reflection::getName() en PHP:
Programa 1:
<?php // Defining a user-defined class named as Departments class Departments { public $Dept1 = 'CSE'; private $Dept2 = 'ECE'; public static $Dept3 = 'EE'; } // Using ReflectionClass over the class Departments $ReflectionClass = new ReflectionClass('Departments'); // Calling getName() function $A = $ReflectionClass->getName(); // Getting the name of the specified class var_dump($A); ?>
Producción:
string(11) "Departments"
Programa 2:
<?php // Using ReflectionClass over the inbuilt class 'ReflectionClass' $ReflectionClass = new ReflectionClass('ReflectionClass'); // Calling getName() function $A = $ReflectionClass->getName(); // Getting the name of the class var_dump($A); ?>
Producción:
string(15) "ReflectionClass"
Referencia: https://www.php.net/manual/en/reflectionclass.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