根据路径下载文件
参考
http://www.w3school.com.cn/php/php_ref_filesystem.asp
http://www.runoob.com/php/php-ref-filesystem.html
背景:数据库有一张表picture,有字段id,path.分别是图片的id和图片保存的相对路径
public function downloadFile($id){
/*1.获取文件绝对路径*/
$map=array('id'=>array('eq',$id));
$filePath = M("Picture")->where($map)->getField('path'); //1.1 根据文件id获取文件相对路径
$path = realpath(__ROOT__);//1.2 项目路径
$fullPath = $path.$filePath;//文件绝对路径
/*2.测试文件是否存在*/
$isexist = file_exists($fullPath);
/*3.下载文件*/
if($isexist){
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($fullPath)); //文件名
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($fullPath)); //文件大小
ob_clean();
flush();
readfile($fullPath); //读取此文件并写到输出流
exit;
}
}
重点解释的代码
ThinkPHP框架中获取项目路径
$path = realpath(__ROOT__);
php file_exists() 函数检查文件或目录是否存在(根据文件绝对路径检查文件是否存在)
存在返回true,否则返回false
$fullPath = "D:\phpStudy\WWW\Uploads\Picture\2017-04-25\58fef0a1e8e43.jpg"
$isexist = file_exists($fullPath);
php basename() 函数返回路径中的文件名部分。
<?php
$path = "/testweb/home.php";
//显示带有文件扩展名的文件名
echo basename($path);
//显示不带有文件扩展名的文件名
echo basename($path,".php");
?>
php filesize() 函数返回指定文件的大小。
若成功,则返回文件大小的字节数。若失败,则返回 false 并生成一条 E_WARNING 级的错误。
参考 http://www.w3school.com.cn/php/func_filesystem_filesize.asp
//参数是文件名或者文件的绝对路径
$filesize = filesize($fullPath);
echo filesize("test.txt");
php readfile()函数 读入一个文件并写入到输出缓冲。
若成功,则返回从文件中读入的字节数。若失败,则返回 false。您可以通过 @readfile() 形式调用该函数,来隐藏错误信息
readfile($fullPath); //读取此文件并写到输出流