• 大小: 3KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: 其他
  • 标签:

资源简介

微信上传图片接口之保存图片,也可保存其他下载图片地址的图片

资源截图

代码片段和文件信息

public function uploadpic(){
error_reporting(0);
$serverId = I(‘serverId‘);
$access_token = wechatauth_v1::getInstance()->getAccessToken();
$img_wxurl = ‘http://file.api.weixin.qq.com/cgi-bin/media/get?access_token=‘
.$access_token.‘&media_id=‘.$serverId;

$times = time();
$rootpath = $_SERVER[‘DOCUMENT_ROOT‘].‘/‘;
$dirname = ‘Uploads/wx_pic/‘.date(‘Ymd‘).‘/‘;
$this->dir_create($rootpath.$dirname);
$imgname = ‘wx_plus_‘.$times.‘.jpg‘;
$thumb_imgname = ‘wx_plus_240_‘.$times.‘.jpg‘;
$img_url = C(‘SITE_URL‘).$dirname.$imgname;
$thumb_img_url = C(‘SITE_URL‘).$dirname.$thumb_imgname;
$imgpath = $rootpath.$dirname.$imgname;
copy($img_wxurl$imgpath);
$image = new \Think\Image();
$image->open($imgpath);
$image->thumb(240 240)->save($rootpath.$

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6156  2016-04-18 10:33  index.html

     文件       1323  2016-04-16 17:23  i.php

----------- ---------  ---------- -----  ----

                 7479                    2


评论

共有 条评论

相关资源