I'm using the Reflection API in PHP to pull a DocComment (PHPDoc) string from a method

$r = new ReflectionMethod($object);
$comment = $r->getDocComment();

This will return a string that looks things like this (depending on how well the method was documented)

/**
* Does this great things
*
* @param string $thing
* @return Some_Great_Thing
*/

Are there any built-in methods or functions that can parse a PHP Doc Comment String into a data structure?

$object = some_magic_function_or_method($comment_string);

echo 'Returns a: ', $object->return;

Lacking that, what part of the PHPDoc source code should I be looking at the do this myself.

Lacking and/or in addition to that, is there third party code that's considered "better" at this that the PHPDoc code?

I realize parsing these strings isn't rocket science, or even computer science, but I'd prefer a well tested library/routine/method that's been built to deal with a lot of the janky, semi-non-correct PHP Doc code that might exist in the wild.

link|improve this question

feedback

4 Answers

You could use DocBlox (http://github.com/mvriel/docblox) to generate a XML data structure for you; you can install DocBlox using PEAR and then run the command:

docblox parse -d [FOLDER] -t [TARGET_LOCATION]

This will generate a file called structure.xml which contains all meta data about your source code, including parsed docblocks.

OR

You can use the DocBlox_Reflection_DocBlock* classes to directly parse a piece of DocBlock text.

This you can do by making sure you have autoloading enabled (or include all DocBlox_Reflection_DocBlock* files) and execute the following:

$parsed = new DocBlox_Reflection_DocBlock($docblock);

Afterwards you can use the getters to extract the information that you want.

Note: you do not need to remove the asterisks; the Reflection class takes care of this.

link|improve this answer
DocBlox is dead. Seems to have been merged into this github.com/phpDocumentor/phpDocumentor2 – Mark May 11 at 15:37
Indeed, phpDocumentor and DocBlox have merged together to form phpDocumentor2 – mvriel May 15 at 17:46
Just noticed you're the author. Sneaky guy. – Mark yesterday
feedback

You can always view the source from phpDoc. The code is under LGPL so if you do decide to copy it you would need to license your software under the same license AND properly add the correct notices.

EDIT: Unless, as @Samuel Herzog, noted you use it as a library.

Thanks @Samuel Herzog for the clarification.

link|improve this answer
as long as you're using the phpDoc part only as library its perfectly fine to use your own license model. licence information was neither required nor correct. – Samuel Herzog Jan 16 '11 at 7:15
Apologies if it wasn't clear from my question, but I know I can use the PHPDoc source code. I'm hoping someone here can provide the exact code I can use to do this to save me glopping through an unfamiliar source tree. – Alan Storm Jan 17 '11 at 2:59
feedback

Check out

http://pecl.php.net/package/docblock

The docblock_tokenize() function will get you part-way there, I think.

link|improve this answer
feedback

From your description I can only suspect what you are trying to do (PHP code documentation). Since you don't state why you are trying to do this I can only speculate.

Maybe you should try another approach. To document PHP code (if that is what you are trying) I would use Doxygen and from the look of your code comment, it is already formatted for doxygen.

With Graphviz, Doxygen also renders nice Class diagrams and call trees.

link|improve this answer
2  
I'm doing what I said I'm doing, trying to parse a string of PHP Documenter comments into a data structure. I'm hoping someone here can provide the exact code I can use to do this to save me glopping through an unfamiliar source tree. – Alan Storm Jan 17 '11 at 2:58
feedback

Your Answer

 
or
required, but never shown

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