?? download.php
字號:
<?PHP
//dirLIST v0.2.0 file download script
set_time_limit(0);
$file_path = "../".base64_decode($_GET['file']);
require("config.php");
if(file_exists($file_path) && is_file($file_path))
{
$fname = ereg_replace( ' +', '-', basename($file_path));
header('Cache-control: private');
header('Content-Type: application/octet-stream');
header('Content-Length: '.filesize($file_path));
header('Content-Disposition: attachment; filename='.$fname);
flush();
$file = fopen($file_path, "r");
while(!feof($file))
{
echo fread($file, round($speed*1024, 0));
flush();
sleep(1);
}
fclose($file);
}
else
die('Error: The file <b>'.basename($file_path).'</b> does not exist. Please go back and select a file');
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -