I have two arrays
The array $groeperingen contains the short codes and the full names and the array $groep cointains only shortcodes.
What I want is that all short codes in $groep are replaced with the full name.
The array $groepering looks like this:
Array
(
[019] => Regio 019a
[013] => Regio 013
[011] => Regio alpha
[AR] => ArmUsers
[CU] => ComputerUsers
[GA] => Gamers
[OP] => Opensource
)
The array $groep looks like this:
Array
(
[0] => CU
[1] => GA
[2] => OP
)
How can I do this?