vote up 1 vote down star

I am looking at any document generator for PHP that can actually read the source code and generate the documentation - instead of writing comments according to what the generator needs the format to be like.

I've looked at phpDocumentor and several other documentation generators: all require the need of writing comments into the source code.

flag

What's the difference between the generator generating the documentation by reading the source code, and the generator generating the documentation by reading commented source code? You mean you want it to generate documentation without you writing any comments? – blwy10 Oct 21 at 5:49
those generators i mentioned requires you to write comments to your functions and variables in order to be able to generate the documentation. – thephpdeveloper Oct 21 at 6:08
As Php is dynamically typed it would be hard to find a generator which mades a much better documentations as the tools we already have... – Hippo Oct 21 at 10:39

2 Answers

vote up 3 vote down check

PHP Documentor should actually be able to create a minimal documentation of your code without any of the tags or docblocks.

However, if you want to get lots of nice meta-information about your code, and also a reasonable styling of your documentation, then you really should be using docblocks and tags to describe your code with...

link|flag
vote up 1 vote down

Look at PHP documenter http://www.phpdoc.org/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.