Guest User

Untitled

a guest
Jul 31st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Array
  2. (
  3. [0] => Array
  4. (
  5. [0] => abc@test.com
  6. [1] => qwrt@sometest.com
  7. [2] => haritha@elitesin.com
  8. )
  9.  
  10. [1] => Array
  11. (
  12. [0] => Kanishka.Kumarasiri@elitesin.com
  13. [1] => Haritha@elitesin.com
  14. )
  15.  
  16. [2] => Array
  17. (
  18. [0] => Kanishka.Kumarasiri@elitesin.com
  19. [1] => test@elitesin.com
  20. )
  21.  
  22. for ($i = 0; $i < count($return_arr); $i++) {
  23.  
  24. $new_value[] = explode(",", $return_arr[$i]);
  25. }
  26.  
  27. print_r (array_unique($new_value));
Add Comment
Please, Sign In to add comment