NetBeans PHP 格式化规则
如何更改 NetBeans 6.9 格式设置规则来更改此自动格式设置:
if (true)
{
if (true)
{
}if (true)
{
}$do_something_else;
}return;
更改为
if (true)
{
if (true)
{
}
if (true)
{
}
$do_something_else;
}
return;
不幸的是,php 文件中的所有代码都保存在一行中,没有空格。当我以相同的单行样式保存 NetBeans 示例代码并按 Alt+shift+F 对其进行格式化后(使用此 http://developmentality.wordpress.com/2010/12/06/customize-code-formatting-in-netbeans/ 设置),我遇到了一些问题,如果关闭标签后缺少新行
How I can change NetBeans 6.9 formatting rule to change this autoformatting:
if (true)
{
if (true)
{
}if (true)
{
}$do_something_else;
}return;
to
if (true)
{
if (true)
{
}
if (true)
{
}
$do_something_else;
}
return;
Unfortunately all code in php files saved in one line without spaces. And when I had saved NetBeans example code in the same one-line style and after press Alt+shift+F to format it(with this http://developmentality.wordpress.com/2010/12/06/customize-code-formatting-in-netbeans/ settings), I got some problem with absent new line after if close tag
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试此方法来格式化文件并使用正确的缩进,
选择所有
ctrl
+a
,然后选择Source >从上方菜单中格式化
。关于缺少标签和括号,netbeans 非常棒,只需检查
Tools >选项
You can try this to formate the file and use proper indentations ,
select all
ctrl
+a
then selectSource > Formate
from the upper menu.about missing tag and brackets , netbeans are awesome , just check
Tools > options