Come posso unire due array (uno con string => coppie di valori e un altro con int => coppie di valori) mantenendo le chiavi string / int? Nessuno di loro si sovrapporrà mai (perché uno ha solo stringhe e l'altro ha solo numeri interi).
Ecco il mio codice attuale (che non funziona, perché array_merge sta reindicizzando l'array con chiavi intere):
// 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" )
aarray( 0 => "VALUE123" )
assert(array(0=>0,1=>1) === array_merge(array('9'=>0), array('9'=>1)))