码迷,mamicode.com
首页 > Web开发 > 详细

php 文件下载

时间:2014-08-01 19:02:52      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   文件   for   

<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 文件下载

标签:style   blog   http   color   os   io   文件   for   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!