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
  • 7,283
  • 3
  • 16
  • 31
deceze
  • 491,798
  • 79
  • 706
  • 853
0

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

StasM
  • 10,095
  • 5
  • 53
  • 101