PHP | Función ReflectionProperty getName()

La función ReflectionProperty::getName() es una función incorporada en PHP que se usa para devolver el nombre de la propiedad especificada.

Sintaxis:

string ReflectionProperty::getName ( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve el nombre de la propiedad especificada.

Los siguientes programas ilustran la función ReflectionProperty::getName() en PHP:
Programa 1:

<?php
  
// Initializing a user-defined class Company
class Company
{
    public $SizeOfGeeksforGeeks = 13;
    protected $SizeOfGFG = 3;
}
  
// Using ReflectionProperty 
$A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks');
$B = new ReflectionProperty('Company', 'SizeOfGFG');
  
// Calling the getName() function
$C = $A->getName();
$D = $B->getName();
  
// Getting the name of the specified property.
var_dump($C);
var_dump($D);
?>

Producción:

string(19) "SizeOfGeeksforGeeks"
string(9) "SizeOfGFG"

Programa 2:

<?php
  
// Initializing some user-defined classes
class Department1
{
    protected $SizeOfHR = 2;
}
class Department2
{
    public $SizeOfCoding = 6;
}
class Department3
{
    private $SizeOfMarketing = 9;
}
  
// Using ReflectionProperty over above classes
$A = new ReflectionProperty('Department1', 'SizeOfHR');
$B = new ReflectionProperty('Department2', 'SizeOfCoding');
$C = new ReflectionProperty('Department3', 'SizeOfMarketing');
  
// Calling the getName() function and
// getting the name of the specified property.
var_dump($A->getName());
var_dump($B->getName());
var_dump($C->getName());
?>

Producción:

string(8) "SizeOfHR"
string(12) "SizeOfCoding"
string(15) "SizeOfMarketing"

Referencia: https://www.php.net/manual/en/reflectionproperty.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *