phpstorm代码格式化问题


使用phpstorm格式化代码的设置 function ')' 与 '{' 保持同一行失败, setting中已经打勾设置,也都重启过phpstorm, 并没有作用. 我的设置如:
图片描述

设置后phpstrom格式化还是老样:


 php


 function you_func()
{
    return xxx;
}

但我需要的效果是:


 php


 function you_func() {
    return xxx;
}

ps: 本人使用的phpstorm版本是8.0.1

phpstorm 代码格式化 php ide

el狐el 10 years ago

虽然我没用过phpstorm但是我用过同样是jetbrains出品的idea和pycharm,也遇到过类似的问题。
jetbrains产品的格式化选项中,warpping这一项的开头通常都有Keep when reformatting的内容。这一段的用处就是指定哪些地方如果已经有换行了,那么在格式化式保留这些换行,而不是去掉。这个功能我一般都是全关的。

图片描述

恶魔XiaoL answered 10 years ago

Your Answer