Forum Moderators: coopster
I looked in wikipedia on the "Comparison_of_documentation_generators" page and found a lot that are "compatible" with php. Most articles I can find on the subject were written in 2002, I can't find any recent recommendations. It would also be nice if it were compatible with javascript as well, but that is not 100% necessary.
So, what is everyone using these days and why?
Apple's HeaderDoc looked extensive and well maintained. Anyone have experience with this or have a better alternative?
Thanks.
[phpdoc.org...]
A lot of other peoples code I've seen use the same comment block (DocBlock) tags, so I would say it was very popular. eg.
/**
* Echo a string
* @param string $myString Pass string to be echo'd
*/
function echoString($myString) {
echo $myString;
}
Not sure about JavaScript though.