programming-examples/php/Arrays/PHP program to get a sorted array without preserving the keys..php

7 lines
183 B
PHP
Raw Normal View History

2019-11-15 12:59:38 +01:00
<?php
$my_array = array("red", "black", "green", "black", "white", "yellow");
$sorted_unique_array = array_values(array_unique($my_array));
print_r($sorted_unique_array);
?>