w3resource

PHP Array Exercises : Sorted array without preserving the keys

PHP Array: Exercise-40 with Solution

Write a PHP program to get a sorted array without preserving the keys.

Sample Solution:

PHP Code:

<?php
// Define an array with duplicate and non-duplicate values
$my_array = array("red", "black", "green", "black", "white", "yellow"); 

// Use array_unique to remove duplicate values and preserve keys
$sorted_unique_array = array_values(array_unique($my_array)); 

// Display the resulting array containing unique values
print_r($sorted_unique_array);

?>

Output:

Array                                                       
(                                                           
    [0] => Red                                              
    [1] => Green                                            
    [2] => White                                            
    [3] => Black                                            
)                                                           
Array                                                       
(                                                           
    [0] => 100                                              
    [1] => 200                                              
    [2] => -10                                              
    [3] => 0                                                
)

Flowchart:

Flowchart: PHP - Remove duplicate values from an array which contains only integers

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP program to remove duplicate values from an array which contains only strings or only integers.
Next: Write a PHP program to identify the email addresses which are not unique.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.