Код: Выделить всё
$array1 = ['dogs' => __('Dogs'), 'cats' => __('Cats')]; // localized
$array2 = [
'ducks' => ['width' => 350, 'height' => 350, 'crop' => true],
'cows' => ['width' => 750, 'height' => 150, 'crop' => true],
]; // not localized
Код: Выделить всё
array('dogs' => __('Dogs'), 'cats' => __('Cats'), 'ducks', 'cows');
Подробнее здесь: https://stackoverflow.com/questions/105 ... ther-array