0

I'm trying to remember the name of a method of commenting your php code inline that auto forms very nice documentation when you're done. Can anyone help me, I thought it was code folding, but I can't seem to dig it up now.

Thanks,

  • Also see: http://stackoverflow.com/questions/189516/automatic-php-documentation-generation http://stackoverflow.com/questions/1182781/how-do-you-document-your-php-functions-and-classes-inline – StasM Jan 06 '11 at 04:40

2 Answers2

0

You're probably looking for a documentation generator like doxygen.
It can parse your source code files and extract function/class definitions with related comments from it.

albert
  • 8,285
  • 3
  • 19
  • 32
deceze
  • 510,633
  • 85
  • 743
  • 889
0

Look into phpDocumentor - probably it is what you are looking for.

StasM
  • 10,593
  • 6
  • 56
  • 103