我正在使用反射从一个方法中获取文档注释: http ://www.php.net/manual/en/reflectionclass.getdoccomment.php ,它看起来像这样:
/**
* Method description
*
* @param array $foo Bla bla
* @return string More bla bla
*/
如何将此字符串解析为我可以使用的内容?我需要从中提取“方法描述”文本。其他东西对我来说并不重要,因为我可以使用其他反射方法来获取参数等。