• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[PHP] Using a Class to Combine 2 arrays

Why don't you use array_merge()? Don't get me wrong, I encourage you to keep doing what you do, but in this case, it seem a bit of an overkill to me.

PHP:
$first = array(
   'mark' => 123456,
   'mike' => '1q2w3e',
);
$second = array(
   'jane' => '23rtg',
);

print_r(array_merge($first, $second));
 
Back
Top