首页 > Web开发 > 详细

php 扫描 下载 apk

时间:2016-07-14 18:48:22      阅读:162      评论:0      收藏:0      [点我收藏+]
   
        $file = ‘C:\WebSiteDirectory\CarparkWeixinBackend\Dplus.apk‘;
        if (file_exists($file)) {
             header(‘Content-Description: File Transfer‘);
             header(‘Content-Type: application/vnd.android.package-archive‘);
             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));
             ob_clean();
             flush();
             readfile($file);
             exit;
         }

 

php 扫描 下载 apk

原文:http://www.cnblogs.com/hgj123/p/5671263.html

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