Using the array_unique () Function : Array Function : Data Structure PHP Source Code


PHP Source Code » Data Structure » Array Function »

 

Using the array_unique () Function




<?php
  $oldarray = array ("A""B""C""D""E""F");
  $newarray = array_unique ($oldarray);
  
  foreach ($newarray as $val) {
     echo "$val""n";
  }
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Data Structure
» Array Function