从代码格式中排除代码部分

发布于 2024-10-31 00:58:52 字数 143 浏览 0 评论 0原文

是否有一个注释标记,我可以在其中包含自动格式化程序将忽略的(php 代码)部分?

有时我对 PHP 代码的棘手部分使用独特的缩进样式。例如,如果我传递几个数组,我会内联初始化。有时这是保持内容可读的唯一方法。不幸的是,在应用代码格式化程序后,该信息丢失了。

Is there a comment tag in which I can enclose a section (of php code) which the auto formatter will ignore?

Sometimes I use a unique indention style for a tricky section of php code. For example if I pass several arrays i initialize in-line. It is sometimes the only way to keep things readable. Unfortunately this is lost after applying the code formatter.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤独陪着我 2024-11-07 00:58:52

您可以通过以下方式注释代码:

// comment out a single line

您还可以在代码中间使用 shell 样式注释,例如

<h1>This is an <?php # echo 'simple';?> example</h1>

上面的标头会显示“这是一个示例”。

最后你可以做多行注释,例如

/* line one
line two and
line three are commented */

Some ways you may comment code:

// comment out a single line

You can also use a shell style comment in the middle of code like,

<h1>This is an <?php # echo 'simple';?> example</h1>

The header above will say 'This is an example'.

Then finally you can do multi line comments like,

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