mailcow-dockerized/data/web/inc/lib/array_merge_real.php
2025-04-17 17:29:05 -05:00

14 lines
285 B
PHP
Executable file

<?php
function array_merge_real()
{
$output = [];
foreach (func_get_args() as $array) {
foreach ($array as $key => $value) {
$output[$key] = isset($output[$key]) ?
array_merge($output[$key], $value) : $value;
}
}
return $output;
}