Q:

Write a PHP program to remove duplicates from a sorted list

belongs to collection: PHP basic programs with examples

0

Write a PHP program to remove duplicates from a sorted list

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

PHP is a server scripting language, and It is a powerful tool for making interactive and dynamic Web-pages. I have used WampServer 2.2 for following excercise..

<?php
function remove_duplicates_list($list1) {
  $nums_unique = array_values(array_unique($list1));
  return $nums_unique ;
}
$nums = array(2,3,4,5,1,2,3,4);
print_r(remove_duplicates_list($nums));
?>

Result:

Array([0] => 2[1] => 3[2] => 4[3] => 5[4] => 1)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a PHP program to compute the sum of the prim... >>
<< Write a PHP program to convert word to digit...