Eclipse PDT 可以在需要的地方自动将 PHPDoc 块添加到代码中吗?
我知道大多数 Eclipse 的 java 开发工具都会有一个快捷脚本,用于添加所需元素(包括页面级)的 JavaDoc 块。
此外,我知道 PDT 将允许您通过“源”菜单为许多内容“生成元素注释”。
是否有一个 Eclipse 插件(或者它可能是 PDT 中的标准,但我刚刚错过了)允许您为给定文件中的所有/部分受支持的元素添加 PHPDoc 块?
I know most of the java development tools for Eclipse will have a short-cut script for adding in JavaDoc blocks for needed elements (including the page-level).
Further, I know that PDT will allow you to "Generate Element Comment" for many things through the Source menu.
Is there an Eclipse plug-in out there (or perhaps it exists standard in PDT and I've just missed it) that will allow you to add PHPDoc Blocks for all/some of the supported elements in a given file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将文本光标放在函数、类或其他内容的正上方,
输入 /** 并按 Enter 键,您将编写 PHPDoc 的开头。
例如。
然后,您可以在注释中写入
@
,并使用@
后跟 ctrl+space 来自动完成PHPDoc 标签的提示。place your text cursor right above your function, class or whatever,
type /** and press enter and you'll have a beginning of PHPDoc written.
Eg.
You can then write
@
inside the comments, and use@
followed by ctrl+space to get auto-completion hints for PHPDoc tags.在 PDT 1.3 中:
窗口 > 首选项> PHP> 编辑> 打字> 自动关闭> Phpdoc 和评论区域(检查)> 添加 Phpdoc 标签(选中)
此外,修改模板以包含更多 Phpdoc:
首选项> PHP> 模板
In PDT 1.3:
Window > Preferences > PHP > Editor > Typing > Automatically close > Phpdoc and comment regions (Check) > Add Phpdoc tags (check)
Also, modify your templates to include more Phpdoc:
Preferences > PHP > Templates