1 Star 0 Fork 0

phpsdks/wechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
WechatResponse.php 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
razonyang 提交于 2017-02-20 10:08 . Initial commit
<?php
namespace phpsdks\wechat;
class WechatResponse
{
public static function format($resp)
{
return json_decode($resp);
}
/**
* 判断请求是否成功
* @param $resp
* @return bool
*/
public static function isOK($resp)
{
return !isset($resp->errcode) || $resp->errcode == 0;
}
/**
* 获取请求结果的错误代号,如果没有则返回 NULL
* @param $resp
* @return null
*/
public static function code($resp)
{
if (isset($resp->errcode)) {
return $resp->errcode;
}
return null;
}
/**
* 获取请求结果的错误信息,如果没有则返回 NULL
* @param $resp
* @return null
*/
public static function message($resp)
{
if ($resp === false) {
return '请求失败';
}
if (isset($resp->errmsg)) {
return $resp->errmsg;
}
if (isset($resp->errcode)) {
return WechatError::message($resp->errcode);
}
return null;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/phpsdks/wechat.git
git@gitee.com:phpsdks/wechat.git
phpsdks
wechat
wechat
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385