gpt4 book ai didi

php - 如何在 PHP5 对象中查找注解?

转载 作者:IT王子 更新时间:2023-10-28 23:55:34 25 4
gpt4 key购买 nike

我希望能够在我的 PHP5 对象中实现自定义注释,并且我想通过构建自己的解析器来了解整个过程是如何工作的。

不过,首先,我需要知道如何查找注释。

是否有我缺少的反射方法,还是有其他方法?

例如,我希望能够在一个类中找到以下注解:

/**
* @MyParam: myvalue
*/

最佳答案

您可以使用 ReflectionClass::getDocComment 执行此操作, 例子:

function getClassAnnotations($class)
{
$r = new ReflectionClass($class);
$doc = $r->getDocComment();
preg_match_all('#@(.*?)\n#s', $doc, $annotations);
return $annotations[1];
}

现场演示:http://codepad.viper-7.com/u8bFT4

关于php - 如何在 PHP5 对象中查找注解?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9742564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com