Development

Removing duplicates from an array in PHP

Removing duplicate values from an array in PHP by using array_unique(), this will return a new array, based on the input without duplicate values.

The second parameter is sort type, default is SORT_STRING.

  • SORT_REGULAR Compare items normally without changing type.
  • SORT_NUMERIC Compare items numerically.
  • SORT_STRING Compare items as strings.
  • SORT_LOCALE_STRING Compare items as strings, based on the current locale.

An example of array_unique:

$items = array('Apple', 'Orange', 'Lemon', 'Lime', 'Orange', 'Peach', 'Pear', 'Mango', 'Peach');
$remove_dupes = array_unique($items);
echo json_encode($remove_dupes);

This will output:

{
  "0": "Apple",
  "1": "Orange",
  "2": "Lemon",
  "3": "Lime",
  "5": "Peach",
  "6": "Pear",
  "7": "Mango"
}

The duplicated values (Orange and Peach) only exist once now.

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago