PHP中如何分析PHPDoc注释?
在 Zend Framework(或其扩展)等框架中,有时可以使用 PHPDoc 样式注释将类型提示等信息传递给框架代码。
我无法想象该框架使用 PHP 解析文件,但除了 PHP 的一些内置语言功能(我不知道)之外,我没有看到任何其他方法来实现此目的。那么这是如何做到的呢?
In frameworks like Zend Framework (or extensions of it), it is sometimes possible to pass information like type hints to the framework code by using PHPDoc style comments.
I cannot imagine that the framework parses the files using PHP, but I do not see any other way to achieve this, except for some built-in language feature of PHP, which I don't know of. So how is this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们使用反射,尤其是
ReflectionMethod::getDocComment()
(还有ReflectionClass::getDocComment()
,ReflectionProperty::getDocComment()
和ReflectionFunction::getDocComment()
)。剩下的很简单:只需使用一些正则表达式或类似的东西来解析文档块。They use reflection and especially
ReflectionMethod::getDocComment()
(there is alsoReflectionClass::getDocComment()
,ReflectionProperty::getDocComment()
andReflectionFunction::getDocComment()
). The rest is simple: just parse the doc-block with some regular expressions or something like that.