IntelliJ(PhpStrom)で横に長い配列を縦並び(1行1要素)に整形する設定
ver.
IntelliJ IDEA ULTIMATE 2017.3
PHPの横に長ーい配列記述を縦並び(1行1要素)に整形する設定。
Prefernce > Editor > Code Style > PHP > Wrapping and Braces
Array initializer > 右どなりの `Do not wrap` をクリックしプルダウンから `Wrap always` を選択。
該当ソースコードを選択後、
Command + Option + L
で整形される。
以下の様にチェックしておくと大体、良い感じに整形してくれるみたい。
$array = array(1,2,3,4,5,);
↓
$array = array(
1,
2,
3,
4,
5,
);
参考
https://pleiades.io/help/idea/settings-code-style-php.html#d942688e620
Author And Source
この問題について(IntelliJ(PhpStrom)で横に長い配列を縦並び(1行1要素)に整形する設定), 我々は、より多くの情報をここで見つけました https://qiita.com/yotsak/items/488cd55170eecfd738d2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .