Skip to content

Instantly share code, notes, and snippets.

@chrishieu
Created February 9, 2023 16:48
Show Gist options
  • Save chrishieu/99da8599b7fd5f4690201ba05c8139ab to your computer and use it in GitHub Desktop.
Save chrishieu/99da8599b7fd5f4690201ba05c8139ab to your computer and use it in GitHub Desktop.
<?php
$a1=array('Ava', 'Emma', 'Olivia');
$a2=array('Olivia', 'Sophia', 'Emma');
function unique_names ($a1, $a2) {
return (array_unique(array_merge($a1,$a2), SORT_REGULAR));
}
print_r(unique_names($a1, $a2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment