是否可以使用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']
,因为源是双倍或三倍。
答案 0 :(得分:1)
在你的构造中无法在phpstorm中执行此检查。只有数组声明,如:
$a = [
'1' => 1,
'1' => 2,
];
Phpstorm告知您有关阵列密钥重复的信息