Como mesclar duas matrizes (uma com pares string => value e outra com pares int => value) mantendo as chaves string / int? Nenhum deles se sobrepõe (porque um possui apenas cadeias e o outro possui apenas números inteiros).
Aqui está o meu código atual (que não funciona, porque array_merge está re-indexando a matriz com chaves inteiras):
// get all id vars by combining the static and dynamic
$staticIdentifications = array(
Users::userID => "USERID",
Users::username => "USERNAME"
);
// get the dynamic vars, formatted: varID => varName
$companyVarIdentifications = CompanyVars::getIdentificationVarsFriendly($_SESSION['companyID']);
// merge the static and dynamic vars (*** BUT KEEP THE INT INDICES ***)
$idVars = array_merge($staticIdentifications, $companyVarIdentifications);
array( 123 => "VALUE123" )
paraarray( 0 => "VALUE123" )
assert(array(0=>0,1=>1) === array_merge(array('9'=>0), array('9'=>1)))