当前位置:   article > 正文

如何能下载别人的php,如何在PHP中强制下载文件

下载别人网站php文件

如果要强制下载,可以使用以下内容:

// Fetch the file info.

$filePath = '/path/to/file/on/disk.jpg';

if(file_exists($filePath)) {

$fileName = basename($filePath);

$fileSize = filesize($filePath);

// Output headers.

header("Cache-Control: private");

header("Content-Type: application/stream");

header("Content-Length: ".$fileSize);

header("Content-Disposition: attachment; filename=".$fileName);

// Output file.

readfile ($filePath);

exit();

}

else {

die('The provided file path is not valid.');

}

?>

如果您只是使用普通链接链接到此脚本,则将下载该文件.

顺便提一下,上面的代码片段需要在页面的开头执行(在任何标题或HTML输出发生之前).如果您决定创建一个基于此的函数来下载任意文件,请注意 – 您需要确保您阻止目录遍历(realpath很方便),只允许从定义区域内下载等,如果您接受来自$_GET或$_POST的输入.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1002794
推荐阅读
相关标签
  

闽ICP备14008679号