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?
| |||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
Zend_Reflection might be of some use: http://framework.zend.com/manual/en/zend.reflection.reference.html | |||
|
feedback
|
|
Another option would be to use the After you have installed DocBlox using PEAR you can use the following command to generate a structure.
or
| |||
|
feedback
|