Help for this page

Select Code to Download


  1. or download this
    shift (sort ( @array ) );
    
  2. or download this
    @array = sort @array;
    shift @array;
    
  3. or download this
    if (@$array[$_] == $number) {
        @$array[$_] = 0; 
        @array = (sort {$a <=> $b} (@$array));
        shift;
    }