微信图片上传检测图片是否含有违禁内容

直接上代码 需要获取token

function curlImg($path){
    $res = Db::name('wechat_config')->find(); // 获取你自己的微信公众号配置信息
    if($res['time']strict(false)->field(true)->where('id', 1)->update($arr);
    }else{
        $access_token = $res['access_token'];
    }
    $url = "https://api.weixin.qq.com/wxa/img_sec_check?access_token=".$access_token;
    $file_path = $_SERVER['DOCUMENT_ROOT']."/".$path;//接受表单文件保存本地的文件地址
    //$file_path = DOC_ROOT . "/Public/Uploads/paimai_goods/2018-06-14/tmp_71012dc7fc3e63ad1f3e9950ffb43bca394d88ecae3798d6.png";
    $file_data = array("media"  => new \CURLFile($file_path));

    $info = _curlPost($url, $file_data);
    return json_decode($info,true);
}

 

你可能感兴趣的:(thinkphp,微信上传,php)