问题
I would like to be able to implement custom annotations in my PHP5 objects, and I'd like to learn how the whole process works by building my own parser.
To start, though, I need to know how to FIND the annotations.
Is there a Reflection method that I am missing, or is there another way?
For example, I'd like to be able to find the following annotation in a class:
/**
* @MyParam: myvalue
*/
回答1:
You can do this using ReflectionClass::getDocComment, example:
function getClassAnnotations($class)
{
$r = new ReflectionClass($class);
$doc = $r->getDocComment();
preg_match_all('#@(.*?)\n#s', $doc, $annotations);
return $annotations[1];
}
Live demo: http://codepad.viper-7.com/u8bFT4
回答2:
You can get comment block using getDocComment Reflection object method.
If you don't want to retrieve annotation by hand, you can use Zend Framework Reflection or other existing solution
来源:https://stackoverflow.com/questions/9742564/how-to-find-annotations-in-a-php5-object