根据PhpStorm中的键将数组转换为多行

时间:2017-03-31 11:30:29

标签: phpstorm

在PhpStorm中有没有办法转换字符串

$arr = array('where' => '{"key_4":' . $this->key_4 . '}', 'key_2' => $this->user->key_2, 'key_3' => $this->user->key_5, 'key_6' => '');

进入

$arr = array(
    'where' => '{"key_4":' . $this->key_4 .'}',
    'key_2' => $this->user->key_2, 
    'key_3' => $this->user->key_5, 
    'key_6' => ''
);

有没有人有想法?

1 个答案:

答案 0 :(得分:4)

这是我在默认方案中为完成此类格式化所做的唯一更改:

enter image description here

结果(之前和之后):

enter image description here