ftp_download.php

来自「dir list................................」· PHP 代码 · 共 25 行

PHP
25
字号
<?PHP
//dirLIST v0.2.0 ftp file download script

set_time_limit(0);
require("config.php");
$file_path = base64_decode(rtrim($_GET['ftpf']));

//Check if file is valid
$ftp_stream = ftp_connect($ftp_host);
$ftp_login = ftp_login($ftp_stream, $ftp_username, $ftp_password);
$file_size = ftp_size($ftp_stream, $file_path);
if($file_size == -1)
{
	echo "File does not exist";
	exit;
}
//Check if file is valid -done

$fname = ereg_replace( ' +', '-', basename($file_path));
header('Cache-control: private');
header('Content-Type: application/octet-stream'); 
header('Content-Length: '.$file_size);
header('Content-Disposition: attachment; filename='.$fname);
readfile('ftp://'.$ftp_username.':'.$ftp_password.'@'.$ftp_host.'/'.$file_path);
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?