array_unique
Given an array:
<?php $arr = ['a', 'b', 'c', 'b', 'a']; ?>
Remove duplicate elements from this array.