如何评价php中的评论?
How to evaluate comments in php?
怎么可能像 Doctrine 一样评估 php 中的命令?
如果我写这个,Doctrine 可以以某种方式处理它,但我不知道如何:
/**
* @Column(type="string", name="title")
* @var string
*/
private $title;
Doctrine 使用 Doctrine Annotations library. Under the hood it uses reflection to get the comments and parses 它们。
如果你想在你的项目中实现完整的注释支持那么使用这个库是最简单的,否则你可以尝试自己解析文档注释。
怎么可能像 Doctrine 一样评估 php 中的命令?
如果我写这个,Doctrine 可以以某种方式处理它,但我不知道如何:
/**
* @Column(type="string", name="title")
* @var string
*/
private $title;
Doctrine 使用 Doctrine Annotations library. Under the hood it uses reflection to get the comments and parses 它们。
如果你想在你的项目中实现完整的注释支持那么使用这个库是最简单的,否则你可以尝试自己解析文档注释。