码迷,mamicode.com
首页 > 微信 > 详细

微信上传素材返回 '{"errcode":41005,"errmsg":"media data missing"}',php5.6返回

时间:2016-12-09 19:23:17      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:timeout   not   highlight   cep   上传   问题   throw   mis   time   

问题描述:

php5.5已经把通过@加文件路径上传文件的方式给放入到Deprecated中了。php5.6默认是不支持这种方式了

 

 

解决办法curl处理

function curl_post($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.
                $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.‘);
            }
    }

 

$file = "a.jpg";
$data = array(
			‘media‘=> new CURLFile($file)
		);
		$result = $this->curl_post(self::WEIXIN_API . ‘media/upload?access_token=‘ . $this->get_access_token($app_id, $app_secret) . ‘&type=‘ . $type ,$data);

 

微信上传素材返回 '{"errcode":41005,"errmsg":"media data missing"}',php5.6返回

标签:timeout   not   highlight   cep   上传   问题   throw   mis   time   

原文地址:http://www.cnblogs.com/padog/p/6150516.html

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