如何下载一个php文件而不执行它?
我正在开发一个内容管理系统,我必须使用 php 代码下载一个 php 文件而不执行.任何人都可以帮助我
im working on a content management system for that i have to download a php file using php code without executing. any one can help me on this
有点像 ftp.我添加了上传、编辑和下载文件的选项.它工作正常.但是在下载 php 文件时,它会执行而不是下载...
it is some thing like ftp. i have added the options to upload, edit and download a file. it is working fine. but while downloading a php file it is executed instead of downloading...
我尝试的是:
<?php
$file = $_REQUEST['file_name'];
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
include_once($file);
exit;
}
?>
推荐答案
您必须加载文件内容,将内容写入请求并设置标头,以便将其解析为强制下载或八位字节流.
You have to load the files content, write the content to the request and set the headers so that it's parsed as force download or octet stream.
例如:
http://server.com/download.php?name=test.php
download.php 的内容:
Contents of download.php:
<?php
$filename = $_GET["name"]; //Obviously needs validation
ob_end_clean();
header("Content-Type: application/octet-stream; ");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ". filesize($filename).";");
header("Content-disposition: attachment; filename=" . $filename);
readfile($filename);
die();
?>
此代码无需任何修改即可运行.虽然它需要验证和一些安全功能.
This code works without any modification. Although it needs validation and some security features.
相关文章