Last active
April 7, 2017 06:56
-
-
Save muhtarudinsiregar/d27a0db5ca51c46ecbaa9db52143925a to your computer and use it in GitHub Desktop.
Case Study 5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $input_one = ['Ricky Andika Putra', 'Ramadani', 'Asep Dadang Supriadi', 'Akmal Fuady', 'Yandi Fitriyanto']; | |
| $input_two = ['Ricky Andika Putra', 'Yandi Fitriyanto', 'Muhammad Sholeh', 'Yadi Cahyadi']; | |
| $merge = array_merge($input_one, $input_two); | |
| $result = array_unique($merge); | |
| print_r($result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment