Parsing phpdoc comments using PHPDocumentor
I'm looking to convert PHPDocumentor output to a format I can traverse through in PHP (Ideally, I want an array of all the functions with their comments). Is there any way to do this? ...
I'm looking to convert PHPDocumentor output to a format I can traverse through in PHP (Ideally, I want an array of all the functions with their comments). Is there any way to do this? ...
Hi, I was wondering, if someone had a nice template (like the documentation on php.net) for PHPDoc... I don't like the standard templates and can't find new ones on google... I like php.net documentation, and was wondering if it was available for PHPDoc, or something similar (not the standard HTML:Smarty:PHP theme, I don't like that......
According to PhpDocumntor each block of comment in order to be converted into a valid piece of documentation requires to be encapsulated like this: /** * This function is used blah, blah, blah * line 2 * line 2 * ... */ function MyFunc($string) {... Do you know if it's possible (maybe by changing some settings) to avoid being forced t...
I'm trying to learn about phpDocumentor. I usually put a classe per file. Am I forced to document file and classes? I want to document just classes (Why should i document files?) but i receive warnings... WARNING in comment.class.php on line 8: DocBlock would be page-level, but precedes class "Comment", use another DocBlock to document ...
I know that PHPDoc exists, but phpdoc wants you to put comments in your PHP files so that it can parse them... What I want is something different: Suppose that I have 10 PHP classes... all I want is a script that can read those classes and automatically generate a representation of those class structures, i.e. what classes are in them, ...
I reference to CSSDoc specification and want to generate comment documentation from css file. The first thought used phpdocumentor tool. When execute phpdoc -o HTML:frames:default -f main.css -t docs command, i got "File not parsed,not a php file" error message. Please tell me how to generate documentation from css file by auto-document...
Hello, I am currently writing some comments for my ant targets just to help document the purpose of each and how they work. Is there a defacto standard or useful utility available to generate documentation off these. Something like JavaDoc or PHPdocumentor perhaps? Regards, Steve ...
Hello. I'm documenting my CakePHP app using PHPdocumentor. As you might know, after CakePHP convention, the views are contained in .ctp files (e.g. app/views/addresses/index.ctp), which are basically normal PHP files just with a changed file extension. PHPdocumentor only recognizes .php files, and I cannot find an option in the config fi...