"; system('unzip -o ' . $file); exit; } // create a handler to read the directory contents $handler = opendir("."); echo "Hãy chọn file để giải nén: " . "
"; // A blank action field posts the form to itself echo '
'; $found = FALSE; // Used to see if there were any valid files // keep going until all files in directory have been read while ($file = readdir($handler)) { if (preg_match ("/.zip$/i", $file)) { echo '
' . $file . '
'; $found = true; } } closedir($handler); if ($found == FALSE) echo "Không tìm thấy file nào có đuôi .zip
"; else echo '
Lưu ý: Các file khi giải nén sẽ ghi đè lên file cũ (nếu đã có sẵn).
'; echo "
"; ?>
Log in