union of two arrays in php

Solutions on MaxInterview for union of two arrays in php by the best coders in the world

showing results for - "union of two arrays in php"
Erik
20 Jan 2018
1$union = array_unique(array_merge($a, $b));