NetBeans PHP 格式化规则

发布于 2024-10-12 04:44:31 字数 649 浏览 2 评论 0原文

如何更改 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 技术交流群。

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

发布评论

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

评论(1

带上头具痛哭 2024-10-19 04:44:31

您可以尝试此方法来格式化文件并使用正确的缩进,
选择所有ctrl+a,然后选择Source >从上方菜单中格式化

关于缺少标签和括号,netbeans 非常棒,只需检查 Tools >选项

You can try this to formate the file and use proper indentations ,
select all ctrl+a then select Source > Formate from the upper menu.

about missing tag and brackets , netbeans are awesome , just check Tools > options

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