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.
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.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…