查找/突出显示阵列的双三源线

时间:2015-04-11 13:29:47

标签: phpstorm

是否可以使用PhpStorm突出显示或找到阵列的所有双线?

例如

$x = array();

$x['one'] = 'Some text';
$x['two'] = 'Some other text';
$x['three'] = 'Also some text';
$x['one'] = 'Also some other text';
$x['four'] = 'text text';
... and so much more

需要高亮显示$x['one'],因为源是双倍或三倍。

1 个答案:

答案 0 :(得分:1)

在你的构造中无法在phpstorm中执行此检查。只有数组声明,如:

  $a = [
    '1' => 1,
    '1' => 2,
  ];

Phpstorm告知您有关阵列密钥重复的信息