1 | <?php |
||
8 | class Arrays |
||
9 | { |
||
10 | /** |
||
11 | * Merge two arrays recursively. Works the same as 'array_merge_recursive' but will only merge array values, other |
||
12 | * values are overridden. |
||
13 | * |
||
14 | * @param array $array1 |
||
15 | * @param array $array2 |
||
16 | * |
||
17 | * @return array |
||
18 | */ |
||
19 | 2 | public static function mergeRecursive(array &$array1, array &$array2): array |
|
28 | } |
||
29 |