Help for this page

Select Code to Download


  1. or download this
    $array[0] = C:/MainDir/SubDir/ExtraDir/file1.txt
    
  2. or download this
    $i = $#array;
    for ($i;$i >= 0;$i--){
    unlink $array[$i];
    }
    
  3. or download this
    while (@array) {
    $x = (pop, @array);
    unlink $x;
    }