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

php 扫描 下载 apk

时间:2016-07-14 18:48:24      阅读:158      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!