I need to modify the function so that it doesn't use create_function. I want to use an anonymous feature but I don't know how to use it.
function arrayUniqueMerge()
{
$variables = '$_' . implode(',$_', array_keys(func_get_args()));
$func = create_function('$tab', ' list(' . $variables . ') = $tab; return array_unique(array_merge(' . $variables . '));');
return $func(func_get_args());
}