fork download
  1. <?php
  2.  
  3. // Como pegar comentários em funções
  4.  
  5. /**
  6.  * Bebe refrigerante
  7.  *
  8.  */
  9.  
  10. function beber()
  11. {
  12. return "Refrigerante";
  13. }
  14.  
  15.  
  16. $reflection = new ReflectionFunction('beber');
  17.  
  18.  
  19. $reflection->getDocComment()
  20. );
Success #stdin #stdout 0.02s 23360KB
stdin
Standard input is empty
stdout
string(32) "/**
 * Bebe refrigerante
 * 
 */"