In PHP, when I have array with duplicate values, it is possible to get only single values through the function array_unique .
Example:
$array = ['a', 'b', 'b', 'c', 'c'];
array_unique($array); // ['a', 'b', 'c']
But I neede...
asked on
01.09.2016 / 14:48