Help for this page

Select Code to Download


  1. or download this
    for ($index = 0; $index <= (scalar(@array) - 1); ++$index)
    {
    ...
             splice ("array, $index, 1);
        }
    }
    
  2. or download this
    $index = 0;
    foreach $thing(@array)
    ...
        
        ++$index;
    }