Home > Backend Development > PHP Tutorial > javascript - php 微信开发中图片上传传的问题?

javascript - php 微信开发中图片上传传的问题?

WBOY
Release: 2016-06-06 20:12:22
Original
1034 people have browsed it

大神们,php微信服务号开发,有没有好的图片上传插件推荐。自己找个图片上传插件,微信端不怎么支持。

回复内容:

大神们,php微信服务号开发,有没有好的图片上传插件推荐。自己找个图片上传插件,微信端不怎么支持。

直接使用html5的fileRead,可以传base64数据到后台,后台转文件保存,插件的话Uploadify/uploadifive

建议使用微信的 图像接口uploadImage 然后在拉取到本地服务器

<code>  $url ='通过微信api获取到的图片地址';  
  $filename='图片名称.jpg';
  $hander = curl_init();
  $fp = fopen($filename,'wb');
  curl_setopt($hander,CURLOPT_URL,$url);
  curl_setopt($hander,CURLOPT_FILE,$fp);
  curl_setopt($hander,CURLOPT_HEADER,0);
  curl_setopt($hander,CURLOPT_FOLLOWLOCATION,1);
  //curl_setopt($hander,CURLOPT_RETURNTRANSFER,false);//以数据流的方式返回数据,当为false是直接显示出来
  curl_setopt($hander,CURLOPT_TIMEOUT,60);
  curl_exec($hander);
  curl_close($hander);
  fclose($fp);
  Return true;
</code>
Copy after login

1.楼上所说,用微信提供的图片上传解决方案,优点是兼容所有的手机,缺点是只保存三天,不是永久保存,还需要自己手动拉取回来。
2.百度的web uploader,对手机端上传的兼容性还不错,android 4.3+UC完美使用,但估计还是会有一部分手机中枪用不了。

其实和php关系不大,更多的是看你前端实现。考虑一下base64?

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