关于扫描二维码下载APP的代码

WBOY
Release: 2016-06-13 12:19:24
Original
1494 people have browsed it

求助关于扫描二维码下载APP的代码
现在需要做一个扫描一下二维码就下载我们的APP的功能,但是现在扫描二维码无法显示任何东西。代码如下

<?php<br />$file_name = "+++.apk"; <br /><br />  $file_dir = "http://****";<br /><br />  $file = @ fopen($file_dir . $file_name,"r"); <br /><br />  if (!$file) { <br /><br />  echo "文件找不到"; <br /><br />  } else { <br /><br />  Header("Content-type: application/octet-stream"); <br /><br />  Header("Content-Disposition: attachment; filename=" . $file_name); <br /><br />  while (!feof ($file)) { <br /><br />  echo fread($file,50000); <br /><br />  } <br /><br />  fclose ($file); <br /><br />  } <br /><br /><br />
Copy after login


扫描二维码是扫描出这个文件,设想是在这个文件里处理下载的功能。如果在浏览器里直接访问这个文件是可以下载的,但是手机上就是无法下载 而且页面是空白的  求助!!
------解决思路----------------------
$file_dir?=?"http://****";    这个换成本地看看
------解决思路----------------------
微信qq的扫码有限制,就像支付宝的扫码也是一样的,但是例如小米手机相机自带的扫描没问题就好,微信   qq的扫码扫码以后会处理扫码结果,他处理掉的扫码结果你也没办法
------解决思路----------------------
你的二维码地址,直接是那个apk的地址不行么?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template