I never cared much about documenting my code before, but recently I started working on an open source project and the need arose. Obviously the 'weapon of choice" is PHPDoc, but...

I couldn't really find a single specification of the PHPDoc standard. There is a wikipedia entry listing some of the properties and there is the phpDocumentor project, which supposedly has a more extensive dictionary, but what puzzles me is where is the definitive guide of PHPDoc? Is there a single standard or it is up to all those numerous phpDocumentor knockoffs to extend the PHPDoc "standard" (if any) to whatever they seem fit.

If we assume that phpDocumentor is the place where the PHPDoc standard is created and maintained, things look pretty grim, since the project's website is dead for for about almost 4 years now. And what puzzles me even more is that about a month ago a version 1.4.4 suddenly appeared from the dead on the Pear site of phpDocumentor.

I know there are a lot more smarted and knowledgable fellows around here, so I would like to know. What is the deal with PHPDoc. Is there a single authority that creates the standard? How reliable is it? Is there any future or we are dealing with a zombie and all hope is lost...

Thanks, Ivo

link|improve this question

60% accept rate
not a question for stack overflow – Dagon Jan 2 at 5:32
5  
@Dagon - I beg to differ. It falls under practical, answerable problems that are unique to the programming profession. – Joseph Silber Jan 2 at 5:40
3  
For reference, a site not being updated in a while doesn't make the site (or the project, for that matter) "dead". It could just be that a new version hasn't been needed for over 3 years, because the software does its thing and does it well. – cHao Jan 2 at 5:41
2  
@cHao: The thing is it doesn't. It's lacking support for PHP 5.3 features. The doc generator is also slow and cumbersome – GordonM Jan 2 at 10:44
feedback

1 Answer

According to Wikipedia it's dead.

The specifications for the standard for PhpDoc tags used to be what was listed in the documentation for PhpDocumentor. But like I said, it's dead. As DocBlox seems to be filling the void that PhpDocumentor left, I'd advise using the DocBlox documentation as the basis for how you do your PhpDoc comments.

I'm hoping Netbeans 7.1 will introduce DocBlox support because it's so much better. It's PHP 5.3 aware and it's actively maintained.

link|improve this answer
1  
Thanks for your comment. I am aware of the myriad of doc generators out there, but they all seem to extend on the PHPDoc base, so I was secretly hoping there will be a single standard, but I guess maybe not. My personal choice of generator for now is - apigen.org – Ivo Sabev Jan 2 at 20:21
1  
If they all seem to extend phpDoc...well...that should tell you something. Namely, there is one main standard for doc comments. Which system you use might change, but the comments will pretty much be the same. – cHao Jan 4 at 3:23
1  
I emailed a few developers of phpdocumentor, who informed me the project is not 'dead', but is not going to be enhanced to gain php 5.3 features (the wikipedia article was also updated accordingly, and no longer lists the project as discontinued). I agree with @IvoSabev , apigen is my new personal favorite. – William Jan 30 at 21:25
feedback

Your Answer

 
or
required, but never shown

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