Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP 5.3 Documentor? [duplicate]

Does anybody use anything else to document their PHP code than PHPDoc? Are there any tools that read the same documentation syntax but give richer output?

like image 617
Edward Tanguay Avatar asked Sep 19 '08 11:09

Edward Tanguay


3 Answers

I´ll go for doxygen too.

Here are several reasons :

  • compatible with phpdoc tags and other popular ones : it´s interoperable
  • works with various programming languages : a better time investment
  • there is alternative syntaxes : can choose the commenting style that suit you
  • very efficient with advanced formating / tagging / metadata
  • there is a GUI that is not linked to any IDE and an eclipse plugin as well

And still free, multiplatform, and open source :-)

It´s easy to learn, but harder that phpdoc because a lot richer.

like image 101
e-satis Avatar answered Oct 11 '22 15:10

e-satis


You could try DocBlox; which is intended to be an alternative for phpDocumentor but with support for additional features of which full PHP 5.3 support is one. An additional benefit is that is it quite fast and uses relatively little memory.

You can read more on http://www.docblox-project.org or see a demo at http://demo.docblox-project.org/default

like image 43
mvriel Avatar answered Oct 11 '22 14:10

mvriel


Another option other than phpDocumentor is Doxygen documentation with PHP support.

like image 25
Yada Avatar answered Oct 11 '22 15:10

Yada