代码拉取完成,页面将自动刷新
同步操作将从 youwen21/exwechat 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
namespace youwen\exwechat;
/**
* 错误信息容器
*/
class errorContainer
{
/**
* @var object 对象实例
*/
protected static $instance;
// error[] = ['code'=>'xx', 'msg'='xx'];
protected static $allError=[];
protected static $lastErrorCode = 0;
protected static $lastErrorMsg = '';
/**
* 架构函数
* @access protected
* @param array $options 参数
*/
protected function __construct($options = [])
{
}
/**
* 初始化
* @access public
* @param array $options 参数
* @return \loan\app\logic\errorContainer
*/
public static function instance($options = [])
{
if (is_null(self::$instance)) {
self::$instance = new static($options);
}
return self::$instance;
}
/**
* 获取最后一条错误码
* @author baiyouwen
*/
public function getLastCode()
{
return self::$lastErrorCode;
}
/**
* 获取最后一条错误信息
* @author baiyouwen
*/
public function getLastMsg()
{
return self::$lastErrorMsg;
}
/**
* 设置错误信息
* @author baiyouwen
*/
public function setError($code, $msg)
{
self::$lastErrorCode = $code;
self::$lastErrorMsg = $msg;
self::$allError[] = ['code'=>$code, 'msg' => $msg];
return true;
}
/**
* 获取全部错误信息
* @author baiyouwen
*/
public function getAllError()
{
return self::$allError;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。