Eclipse PDT 可以在需要的地方自动将 PHPDoc 块添加到代码中吗?

发布于 2024-07-12 22:38:06 字数 202 浏览 11 评论 0原文

我知道大多数 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 技术交流群。

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

发布评论

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

评论(2

离线来电— 2024-07-19 22:38:06

将文本光标放在函数、类或其他内容的正上方,
输入 /** 并按 Enter 键,您将编写 PHPDoc 的开头。
例如。

/**
 * 
 * Enter description here ...
 * @param unknown_type $book
 * @param unknown_type $product
 */

然后,您可以在注释中写入 @,并使用 @ 后跟 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.

/**
 * 
 * Enter description here ...
 * @param unknown_type $book
 * @param unknown_type $product
 */

You can then write @ inside the comments, and use @ followed by ctrl+space to get auto-completion hints for PHPDoc tags.

赢得她心 2024-07-19 22:38:06

在 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

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