什么是选项卡注入?
阅读 zend 框架 编码标准我发现了这样一句话:
编辑器应配置为将制表符视为空格 为了防止制表符注入到源代码中 代码。
我的问题是:什么是选项卡注入?我搜索了谷歌,但我确实在很多标准中找到了这个短语,所以我不太确定它指的是什么。
Reading on the zend framework coding standard I found this phrase:
Editors should be configured to treat tabs as spaces
in order to prevent injection of tab characters into the source
code.
And my question is: what is tab injection? I searched google but I did find this phrase in a lot of standards, so I 'm not really sure what it refers to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这没什么特别的,只是一种奇特的方式来表达“我们不想在源代码中出现选项卡”。
正如您提供的链接中所述,Zend 编码标准要求源文件中的空格不得包含制表符——所有缩进都必须使用空格完成。
It's nothing special, just a fancy way of saying "we don't want tabs in our source code".
As stated on the link you provide, Zend coding standards mandate that whitespace in source files must not include tabs -- all indentation must be done with spaces.
“制表符注入”是指插入制表符作为缩进字符。
"Tab injection" means the insertion of a tab as an indentation character.