(PHP 5 >= 5.1.0, PHP 7)
ReflectionProperty::getDocComment — Récupère le commentaire d'une propriété
Récupère un commentaire d'une propriété.
Cette fonction ne contient aucun paramètre.
Le commentaire de la propriété.
Exemple #1 ReflectionProperty::getDocComment() example
<?php
class Str
{
/**
* @var int The length of the string
*/
public $length = 5;
}
$prop = new ReflectionProperty('Str', 'length');
var_dump($prop->getDocComment());
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
string(53) "/** * @var int The length of the string */"