zoukankan      html  css  js  c++  java
  • 微信新增图片信息

    /**
    * 上传永久图片的接口------------------------------------------------------------------------
    */
    public function actionNewupload()
    {
    $TOKEN=$this->actionToken();
    $file = "D:/upload/bb4.png";
    $data = array(
    'media'=> new CURLFile($file)
    );
    $url = 'https://api.weixin.qq.com/cgi-bin/material/add_material?access_token='.$TOKEN.'&type=image';
    $result = $this->curl_posts($url,$data);
    var_dump($result);
    }

    function curl_posts($url, $data, $header = array()){
    if(function_exists('curl_init')) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    if(is_array($header) && !empty($header)){
    $set_head = array();
    foreach ($header as $k=>$v){
    $set_head[] = "$k:$v";
    }
    curl_setopt($ch, CURLOPT_HTTPHEADER, $set_head);
    }
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 0);// 1s to timeout.
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    $response = curl_exec($ch);
    if(curl_errno($ch)){
    //error
    return curl_error($ch);
    }
    $reslut = curl_getinfo($ch);
    print_r($reslut);
    curl_close($ch);
    $info = array();
    if($response){
    $info = json_decode($response, true);
    }
    return $info;
    } else {
    throw new Exception('Do not support CURL function.');
    }
    }

  • 相关阅读:
    其他内容
    html标签
    ambari安装集群下安装kafka manager
    greenplum-cc-web4.0监控安装
    ambari安装集群下python连接hbase之安装thrift
    hadoop运维问题记录
    Ambari2.6.0 安装HDP2.6.3(离线安装)
    mongodb 定时备份
    linux top命令详解
    Sublime Text3配置Python环境
  • 原文地址:https://www.cnblogs.com/simadongyang/p/10537124.html
Copyright © 2011-2022 走看看