码迷,mamicode.com
首页 > 其他好文 > 详细

二维码转存为图片

时间:2018-05-09 19:27:50      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:qrcode   code   weixin   curl   ini   head   fopen   init   dex   

public function index(){
       $url = ‘https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQEA8TwAAAAAAAAAAS5odHRwOi8vd2VpeGluLn‘;
            $file =  "public/uploads/1.jpg";
            $ch = curl_init($url);
            $fp = fopen($file, ‘wb‘);
            curl_setopt($ch, CURLOPT_FILE, $fp);
            curl_setopt($ch, CURLOPT_HEADER, 0);
            curl_exec($ch);
            // curl_close($ch);
            fclose($fp);$fp = fopen($file, ‘wb‘);
            curl_setopt($ch, CURLOPT_FILE, $fp);
            curl_setopt($ch, CURLOPT_HEADER, 0);
            curl_exec($ch);
            curl_close($ch);
            fclose($fp);
    }

  

二维码转存为图片

标签:qrcode   code   weixin   curl   ini   head   fopen   init   dex   

原文地址:https://www.cnblogs.com/huanghanyi/p/9015761.html

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