99欧美日本一区二区留学生-丰满顿熟妇好大bbbbbβ -婷婷五月六月激情综合色中文字幕-永久免费AV网站可以直接看的

萬象時代LOGO

新聞資訊

News

php在微信開發(fā)中發(fā)送與接收流文件的方法

DATE:2015-08-16 已瀏覽
265

記錄一下這些都是測試過后可以使用的代碼!本博文是記錄一下。怎么上傳臨時的素材后獲取id然后進行下載的。在微信里面臨時的素材只能保留3天。3天過后便后自動的刪除掉了。微信的也不提供獲取臨時素材的列表。那么看看下面代碼
php 微信開發(fā)之新增上傳/獲取下載臨時素材 代碼

<?php 
define("AppID","");//你的id 
define("AppSecret", "");//你的secret


/*  上傳臨時文件 */
$a = "0";
if($a == "1"){
$type = "image";
$filepath = dirname(__FILE__)."w.jpg"; 
$filedata = array("file1"  => "@".$filepath);
$url = "https://api.weixin.qq.com/cgi-bin/media/upload?access_token=".token()."&type=".$type;
$result = https_request($url, $filedata);
$p = json_decode($result);
echo "media_id:".$p->media_id;
}


/*  獲取臨時的文件  */
$b = "1";
if($b == "1"){
$id = "Zary6julqwRBBuSgzFbiMCSjYmG2930UvzjrbnHN4nyT3YGZVD8H-ecfoReGT1Qr";
$url = "https://api.weixin.qq.com/cgi-bin/media/get?access_token=".token()."&media_id=".$id;
$arr = downloadWeixinFile($url);
saveWeixinFile("1.jpg",$arr['body']);

}


function downloadWeixinFile($url)
{
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_HEADER, 0);    
    curl_setopt($ch, CURLOPT_NOBODY, 0);    //只取body頭
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $package = curl_exec($ch);
    $httpinfo = curl_getinfo($ch);
    curl_close($ch);
    $imageAll = array_merge(array('header' => $httpinfo), array('body' => $package)); 
    return $imageAll;
}
 

function saveWeixinFile($filename, $filecontent)
{
    $local_file = fopen($filename, 'w');
    if (false !== $local_file){
        if (false !== fwrite($local_file, $filecontent)) {
            fclose($local_file);
        }
    }
}



function token(){
$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".AppID."&secret=".AppSecret;
    $data = json_decode(file_get_contents($url),true);
if($data['access_token']){
return $data['access_token'];
    }else{
        echo "Error";
   exit();
    }
}
?>