PHP中如何分析PHPDoc注释?

发布于 2024-08-11 20:01:30 字数 152 浏览 6 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

涙—继续流 2024-08-18 20:01:30

他们使用反射,尤其是ReflectionMethod::getDocComment() (还有 ReflectionClass::getDocComment(), ReflectionProperty::getDocComment()ReflectionFunction::getDocComment())。剩下的很简单:只需使用一些正则表达式或类似的东西来解析文档块。

They use reflection and especially ReflectionMethod::getDocComment() (there is also ReflectionClass::getDocComment(), ReflectionProperty::getDocComment() and ReflectionFunction::getDocComment()). The rest is simple: just parse the doc-block with some regular expressions or something like that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文