首页 > Web开发 > 详细

php 文件下载

时间:2014-08-01 19:02:52      阅读:379      评论:0      收藏:0      [点我收藏+]
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<!-- 文件下载  -->
<?php
$file="D:/wamp/www/ecshop3/images/wap_logo.png";
        if(is_file($file)) {
                    header("Content-Type: application/force-download");
                    header("Content-Disposition: attachment; filename=".basename($file));
                    readfile($file);
                    exit;
                }else{
                    echo "文件不存在!";
                    exit;
                }


?>

 

php 文件下载,布布扣,bubuko.com

php 文件下载

原文:http://www.cnblogs.com/chen-lhx/p/3885272.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!