Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Look at PHP documenter phpdoc.org – Xinus Oct 21 '09 at 5:45
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 '09 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. – mauris Oct 21 '09 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... – TheHippo Oct 21 '09 at 10:39

closed as not constructive by casperOne Jan 10 at 12:56

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 14 down vote accepted

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...

Update

PHP Documentor is no longer maintained as a project - but there is now DocBlox. It has a lot of the original syntax of PHP Documentor (PHPDoc), but it also supports features and syntax from PHP 5.3 and seems to have easier to implement report templating/decorating features, too.

share|improve this answer
4  
Update: As of March 16, 2012 DocBlox has been merged with PHP Documentor to become PHP Documentor 2 (see docblox-project.org and phpdoc.org). – Sean the Bean Aug 13 '12 at 20:04
1  
There seems to be a lot of issues running PHPDocumentor 2. It's def. not out-of-the-box installation. – Steven Oct 16 '12 at 14:53
PHPDocumentor 2 is much more stable now than it was back when the above 2 comments were made. It still needs work, but it has come a long way. – Webnet Feb 20 at 0:37

i had nothing but trouble with phpdocumentor, but http://www.apigen.org rules! phpstorm will generate a large chunk of the phpdoc for you.

share|improve this answer

Use Doxygen with configuration EXTRACT_ALL = YES and EXTRACT_PRIVATE = YES and you should be okay. Obviously, such a documentation is far from good because it tells you nothing that couldn't be extracted from function/method/class signatures alone. If that's enough, there's your documentation.

However, if I were to receive such a documentation for any code, I'd like to have the actual code, too, because otherwise there's way too much guesswork to do if I try to use the code/library.

share|improve this answer

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