http://www.phpdoc.org/ I've been trying to use that style for all my inline docs for a while, and there are a few other tools to help out.
Finally, I run the following shell script in a cron-job every night:
#!/bin/sh
DIR=`readlink -f $0`
DIR=`dirname $DIR`
DIR=`readlink -f $DIR/..`
# ignoring the (/blog, ) root dir, *.sh files or backups
# find files changed in the last day
FIND=`find $DIR/ -mtime 0 ! -name '*\.sh' ! -iname '\.bak' ! \
-iname '*~' -type f ! -name \.svn \
| grep -v \.svn | grep -v "/blog/" | grep -v '/tmp/' `
test -n '$FIND' && clear;echo "The following files have changed: \n$FIND\n"
# if there are no files, exit.
test -z "$FIND" && exit
# OK, there may be something new to document
# and the PHPdocs
phpdoc -c phpdoc.ini $@
and phpdoc.ini is:
[Parse Data]
title = WEBSITE-NAME Manual
hidden = false
parseprivate = on
javadocdesc = off
defaultcategoryname = Documentation
defaultpackagename = WEBSITE
quiet = on
target = /web/Hosts/docs/phpdoc
readmeinstallchangelog = README, INSTALL, FAQ, LICENSE
directory=../php,../includes
ignore=.svn/,tmp/
output=HTML:Smarty:PHP
sourcecode = on
(based on the example phpdoc.ini on the website