I need to remove the duplicate values from a php array, for example:
$array = ('2015', '2015', '2012', '2013', '2014', '2014', '2016')
I wish I had the output:
Array ( [0] => 2012 [1] => 2013 [2] => 2016 )
Everything that is d...
asked by
22.11.2017 / 18:56