Skip to content

Instantly share code, notes, and snippets.

@mtio
Created May 17, 2016 18:10
Show Gist options
  • Select an option

  • Save mtio/570179624f99233a10c5074043df576b to your computer and use it in GitHub Desktop.

Select an option

Save mtio/570179624f99233a10c5074043df576b to your computer and use it in GitHub Desktop.
Merge two arrays with common values into a single array.
array_map(function($val) {
if (array_search($val, $this->cities) === false) {
$this->cities[] = $val;
}
}, array_merge($popConcert, $popSports));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment