从代码格式中排除代码部分
是否有一个注释标记,我可以在其中包含自动格式化程序将忽略的(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过以下方式注释代码:
您还可以在代码中间使用 shell 样式注释,例如
上面的标头会显示“这是一个示例”。
最后你可以做多行注释,例如
Some ways you may comment code:
You can also use a shell style comment in the middle of code like,
The header above will say 'This is an example'.
Then finally you can do multi line comments like,