PHP | Función ReflectionClass getDocComment()

La función ReflectionClass::getDocComment() es una función incorporada en PHP que se usa para devolver los comentarios de documentos especificados si existen; de lo contrario, devuelve false.
 

Sintaxis: 

string ReflectionClass::getDocComment( void )

Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve los comentarios de documentos especificados si existen; de lo contrario, devuelve falso.
 

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

php

<?php
  
// Below is the doc comments
/**
* Below program is
* about getting the
* doc comments.
*/
// Defining a class named as Departments
class Departments {}
  
// Using ReflectionClass over the class Departments
$ReflectionClass = new ReflectionClass('Departments');
  
// Calling getDocComment() functions
$A = $ReflectionClass->getDocComment();
  
// Getting specified doc comments
var_dump($A);
?>
Producción: 

string(66) "/** 
* Below program is
* about getting the
* doc comments.
*/"

 

Programa 2: 

php

<?php
  
// Defining a class named as Departments
class Departments {}
  
// Using ReflectionClass over the class Departments
$ReflectionClass = new ReflectionClass('Departments');
  
// Calling getDocComment() functions
$A = $ReflectionClass->getDocComment();
  
// Getting specified doc comments
var_dump($A);
?>
Producción: 

bool(false)

 

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