我有这句话

$test1 = 'testing1';
$test1test1 = 'testing1';
$test1test1test1 = 'testing1';
$test1 = 'testing1';

我想使用标签将其对齐
$test1           = 'testing1';
$test1test1      = 'testing1';
$test1test1test1 = 'testing1';
$test1           = 'testing1';

有没有办法在phpstorm或webstorm中做到这一点?

最佳答案

Cmd + Alt + L(在Mac中)或Ctrl + Alt + L(Win)和PHP Storm将根据“设置”中的代码样式来格式化代码。要设置此代码样式,请执行以下操作:
文件->设置->代码样式-> PHP(在此处选择您的语言)->其他->对齐键值对-标记为选中。然后按重新格式化代码(Ctrl + Alt + L)并按voila。您将获得上面编写的样式相同的代码。

关于php - 如何将文本对齐到phpstorm或webstorm中的特定字符?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17281308/

10-09 13:33