根据PSR2,在键和多行数组的值之间具有空格的正确方法是什么。
$result = [
'key1' => 'value1',
'another_key' => 'value2',
'some_other_key' => 'value3'
];
与
$result = [
'key1' => 'value1',
'another_key' => 'value2',
'some_other_key' => 'value3'
];
看起来第一个更具可读性,但是我们还有多余的空间。
最佳答案
根据:-PSR-2 multiline array indentation missing
注意:-
在该线程中也说明了同样的事情:-Question on proper Array syntax
,即使您选中此线程:- Coding Style Guide Additions
它仅声明添加,
,而不声明添加空格的任何内容。
关于php - PSR2-键和值之间的多行数组缩进,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47075076/