PHP | Función ReflectionProperty getDocComment()

La función ReflectionProperty::getDocComment() es una función incorporada en PHP que se utiliza para devolver el comentario de documento de la propiedad especificada.

Sintaxis:

string ReflectionProperty::getDocComment ( void )

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

Valor de retorno: esta función devuelve el comentario de documento de la propiedad especificada.

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

<?php
  
// Initializing a user-defined class Company
class Company
{
    /**
     * @Below is the Size of GeeksforGeeks String
     */
    public $SizeOfGeeksforGeeks = 13;
  
    /**
     * @Below is the Size of GFG String
     */
    public $SizeOfGFG = 3;
}
  
// Using ReflectionProperty 
$A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks');
$B = new ReflectionProperty('Company', 'SizeOfGFG');
  
// Calling the getDocComment() function
$C = $A->getDocComment();
$D = $B->getDocComment();
  
// Getting the doc comment of the specified property
var_dump($C);
var_dump($D);
?>

Producción:

string(63) "/**
     * @Below is the Size of GeeksforGeeks String
     */"
string(53) "/**
     * @Below is the Size of GFG String
     */"

Programa 2:

<?php
  
// Initializing some user-defined classes
class Department1
{
    /**
     * @Below is the Size of HR String
     */
    public $SizeOfHR = 2;
}
class Department2
{
    /**
     * @Below is the Size of Coding String
     */
    public $SizeOfCoding = 6;
}
class Department3
{
    /**
     * @Below is the Size of Marketing String
     */
    public $SizeOfMarketing = 9;
}
  
// Using ReflectionProperty over above classes
$A = new ReflectionProperty('Department1', 'SizeOfHR');
$B = new ReflectionProperty('Department2', 'SizeOfCoding');
$C = new ReflectionProperty('Department3', 'SizeOfMarketing');
  
// Calling the getDocComment() function
$D = $A->getDocComment();
$E = $B->getDocComment();
$F = $C->getDocComment();
  
// Getting the doc comments of the specified properties
var_dump($D);
var_dump($E);
var_dump($F);
?>

Producción:

string(52) "/**
     * @Below is the Size of HR String
     */"
string(56) "/**
     * @Below is the Size of Coding String
     */"
string(59) "/**
     * @Below is the Size of Marketing String
     */"

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