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?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You can use pure php reflection to get the phpdoc content. We used that to put there input validation data. I'll look up example code later.

Just use this:

$data = new ReflectionMethod($class, $method);
echo $data->getDocComment();
link|improve this answer
feedback

Zend_Reflection might be of some use: http://framework.zend.com/manual/en/zend.reflection.reference.html

link|improve this answer
feedback

Another option would be to use the parse option of DocBlox to generate a XML structure which you can then interpret with your own code.

After you have installed DocBlox using PEAR you can use the following command to generate a structure.

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

or

docblox parse -f [SOURCE_FILE] -t [TARGET_LOCATION] 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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