Elements of the enumerated array are numbers : Array Element : Data Structure PHP Source Code


PHP Source Code » Data Structure » Array Element »

 

Elements of the enumerated array are numbers





 <?php
  $sortnumbers []10000;
  $sortnumbers []10;
  $sortnumbers []100;
  $sortnumbers []1000;
  $sortnumbers []1;

  sort ($sortnumbers);

  foreach ($sortnumbers as $val) {
    echo "$val""n";
  }
 ?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Data Structure
» Array Element