Advertisement
Guest User

Untitled

a guest
Jul 19th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. array_unique($data, SORT_REGULAR);
  2.  
  3. Array
  4. (
  5. [0] => Array
  6. (
  7. [First Name] => xyz
  8. [Last Name] => abc
  9. [Primary Contact Email] => xyz@hotmail.com
  10. [Preferred Telephone] => 1-123-000-123
  11. )
  12. [1] => Array
  13. (
  14. [First Name] => xyz
  15. [Last Name] => abc
  16. [Primary Contact Email] => xyz@hotmail.com
  17. [Preferred Telephone] => 1-123-000-123
  18. )
  19. [2] => Array
  20. (
  21. [First Name] => dss
  22. [Last Name] => sddfs
  23. [Primary Contact Email] => dss@hotmail.com
  24. [Preferred Telephone] => 1-553-000-123
  25. )
  26. [3] => Array
  27. (
  28. [First Name] => dss
  29. [Last Name] => sds
  30. [Primary Contact Email] => dss@hotmail.com
  31. [Preferred Telephone] => 1-444-000-123
  32. )
  33. [4] => Array
  34. (
  35. [First Name] => dss
  36. [Last Name] => sds
  37. [Primary Contact Email] => dss@hotmail.com
  38. [Preferred Telephone] => 1-553-000-123
  39. )
  40. )
  41.  
  42. Array
  43. (
  44. [0] => Array
  45. (
  46. [First Name] => xyz
  47. [Last Name] => abc
  48. [Primary Contact Email] => xyz@hotmail.com
  49. [Preferred Telephone] => 1-123-000-123
  50. )
  51. [2] => Array
  52. (
  53. [First Name] => dss
  54. [Last Name] => sddfs
  55. [Primary Contact Email] => dss@hotmail.com
  56. [Preferred Telephone] => 1-553-000-123
  57. )
  58. [3] => Array
  59. (
  60. [First Name] => dss
  61. [Last Name] => sds
  62. [Primary Contact Email] => dss@hotmail.com
  63. [Preferred Telephone] => 1-444-000-123
  64. )
  65. )
  66.  
  67. $emails = array_unique(array_column($data,'Primary Contact Email'));
  68. $phones = array_unique(array_column($data,'Preferred Telephone'));
  69. $names = array_unique(array_column($data,'First Name'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement