[更新]素材二进制文件允许设置输出类型

This commit is contained in:
Anyon 2018-05-10 18:34:26 +08:00
parent a3e6c0cd22
commit 4598856a9e
2 changed files with 10 additions and 10 deletions

View File

@ -56,8 +56,8 @@ class Media extends BasicWeChat
$url = "https://api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id={$media_id}"; $url = "https://api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id={$media_id}";
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
$result = Tools::get($url); $result = Tools::get($url);
if (($json = Tools::json2arr($result))) { if (json_decode($result)) {
return $json; return Tools::json2arr($result);
} }
return is_null($outType) ? $result : $outType($result); return is_null($outType) ? $result : $outType($result);
} }
@ -139,8 +139,8 @@ class Media extends BasicWeChat
$url = "https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN"; $url = "https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN";
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
$result = Tools::post($url, ['media_id' => $media_id]); $result = Tools::post($url, ['media_id' => $media_id]);
if (($json = Tools::json2arr($result))) { if (json_decode($result)) {
return $json; return Tools::json2arr($result);
} }
return is_null($outType) ? $result : $outType($result); return is_null($outType) ? $result : $outType($result);
} }

View File

@ -43,8 +43,8 @@ class Qrcode extends BasicWeChat
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
$data = ['path' => $path, 'width' => $width, 'auto_color' => $auto_color, 'line_color' => $line_color]; $data = ['path' => $path, 'width' => $width, 'auto_color' => $auto_color, 'line_color' => $line_color];
$result = Tools::post($url, Tools::arr2json($data)); $result = Tools::post($url, Tools::arr2json($data));
if (($json = Tools::json2arr($result))) { if (json_decode($result)) {
return $json; return Tools::json2arr($result);
} }
return is_null($outType) ? $result : $outType($result); return is_null($outType) ? $result : $outType($result);
} }
@ -68,8 +68,8 @@ class Qrcode extends BasicWeChat
$data = ['scene' => $scene, 'width' => $width, 'auto_color' => $auto_color, 'page' => $page, 'line_color' => $line_color]; $data = ['scene' => $scene, 'width' => $width, 'auto_color' => $auto_color, 'page' => $page, 'line_color' => $line_color];
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
$result = Tools::post($url, Tools::arr2json($data)); $result = Tools::post($url, Tools::arr2json($data));
if (($json = Tools::json2arr($result))) { if (json_decode($result)) {
return $json; return Tools::json2arr($result);
} }
return is_null($outType) ? $result : $outType($result); return is_null($outType) ? $result : $outType($result);
} }
@ -89,8 +89,8 @@ class Qrcode extends BasicWeChat
$url = 'https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=ACCESS_TOKEN'; $url = 'https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args()); $this->registerApi($url, __FUNCTION__, func_get_args());
$result = Tools::post($url, Tools::arr2json(['path' => $path, 'width' => $width])); $result = Tools::post($url, Tools::arr2json(['path' => $path, 'width' => $width]));
if (($json = Tools::json2arr($result))) { if (json_decode($result)) {
return $json; return Tools::json2arr($result);
} }
return is_null($outType) ? $result : $outType($result); return is_null($outType) ? $result : $outType($result);
} }