Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Elements of the enumerated array are numbers

Tue Oct 28, 2008 1:06 am

Code:

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

  
sort ($sortnumbers);

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




Post a reply
  Related Posts  to : Elements of the enumerated array are numbers
 Looping through an Enumerated Array     -  
 Add elements to the end of an array     -  
 Return an array with elements in reverse order     -  
 find out the number of elements in an array of 8-bit element     -  
 Removing elements from array list with the iterator     -  
 @Enumerated and EnumType.STRING     -  
 Array difference for associate array     -  
 add two 24-bit numbers (sum two numbers)     -  
 JProgressbar Sum of 'n' Numbers     -  
 Complex Numbers     -  

Topic Tags

PHP Variables, PHP Arrays