Your IP : 18.188.188.152


Current Path : /home/lentoinv/test.lentoria.com/vendor/spatie/flare-client-php/src/
Upload File :
Current File : //home/lentoinv/test.lentoria.com/vendor/spatie/flare-client-php/src/helpers.php

<?php

if (! function_exists('array_merge_recursive_distinct')) {

    /**
     * @param array<int|string, mixed> $array1
     * @param array<int|string, mixed> $array2
     *
     * @return array<int|string, mixed>
     */
    function array_merge_recursive_distinct(array &$array1, array &$array2): array
    {
        $merged = $array1;
        foreach ($array2 as $key => &$value) {
            if (is_array($value) && isset($merged[$key]) && is_array($merged[$key])) {
                $merged[$key] = array_merge_recursive_distinct($merged[$key], $value);
            } else {
                $merged[$key] = $value;
            }
        }

        return $merged;
    }
}

?>