diff --git a/config/db.php b/config/db.php index 8bd82aa..23cf279 100644 --- a/config/db.php +++ b/config/db.php @@ -6,9 +6,9 @@ return [ // 'username' => 'cxaibc', // 'password' => 'tm2CtPfmRXSif6mn', - 'dsn' => 'mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot', - 'username' => 'cxfoot', - 'password' => 'bm8kB3eKddhCW83s', + 'dsn' => 'mysql:host=127.0.0.1;dbname=cxfoot', + 'username' => 'root', + 'password' => '123456', 'charset' => 'utf8mb4', diff --git a/modules/api/controllers/AuthController.php b/modules/api/controllers/AuthController.php index 1aa5806..4d3963a 100644 --- a/modules/api/controllers/AuthController.php +++ b/modules/api/controllers/AuthController.php @@ -12,6 +12,7 @@ namespace app\modules\api\controllers; use app\modules\api\behaviors\LoginBehavior; +use app\modules\api\models\LoginByWxoaForm; use app\modules\api\models\LoginForm; use app\modules\api\models\LogoutForm; use app\modules\api\models\LoginByMobileForm; @@ -37,6 +38,8 @@ class AuthController extends Controller 'api/auth/login', 'api/auth/login-by-mobile', 'api/auth/login-by-wxmp', + 'api/auth/login-by-wxoa', + 'api/auth/signup-by-mobile', 'api/auth/access-token', 'api/auth/reset-pwd', @@ -175,17 +178,13 @@ class AuthController extends Controller $data = $this->invaildRequest(); return $this->responseHandler($data); } - if(!$this->lock->acquire()){ - $data = ['code' => 1, 'msg' => '系统繁忙!稍后再试^v^!']; - return $this->responseHandler($data); - } - $form = new LoginByWxmpForm(); + + $form = new LoginByWxoaForm(); $form->attributes = \Yii::$app->request->post(); $form->cx_mch_id = $this->cx_mch_id; $form->token_type = $this->_cx_token_type; $form->wechat_mp = $this->wechat_mp; $data = $form->login(); - $this->lock->release(); return $this->responseHandler($data); } diff --git a/modules/api/controllers/UserController.php b/modules/api/controllers/UserController.php index 0c6f288..44bcd49 100644 --- a/modules/api/controllers/UserController.php +++ b/modules/api/controllers/UserController.php @@ -19,8 +19,10 @@ use app\models\QrcodeRecord; use app\models\StoreUser; use app\models\User; use app\models\UserInformation; +use app\models\UserOauth; use app\modules\api\behaviors\LoginBehavior; use app\modules\api\models\CommentForm; +use app\modules\api\models\LoginForm; use app\modules\api\models\UserBasicInfoForm; use app\modules\api\models\UserModifyForm; @@ -32,7 +34,8 @@ class UserController extends Controller 'login' => [ 'class' => LoginBehavior::className(), 'ignore' => [ - 'api/user/modify-user' + 'api/user/modify-user', + 'api/user/verify-user' ] ] ]); @@ -48,21 +51,30 @@ class UserController extends Controller */ public function actionVerifyUser() { + //微信登陆后 判断去登陆 还是去绑定 - $user_id = \Yii::$app->user->identity->id; //获取用户登陆ID + $post = \Yii::$app->request->post(); // attributes 转成键值对形式 key=> value + $user_outh = UserOauth::findOne(['openid' => $post['code']]); + if ($user_outh == null) { + return ['code' => 1, 'msg' => '授权失败,请重新进行微信公众号授权',]; + } + if ($user_outh->user_id == 0) { + return ['code' => 1, 'msg' => '暂未填写信息',]; + } - $user = User::findOne(['id' => $user_id]); - - if (!empty($user->is_view)) { - $data = [ - 'code' => 1, - 'msg' => '已绑定', - ]; + // 查用户信息 + $user = User::findOne(['id' => $user_outh->user_id, 'type' => 0, 'status' => 0]); + //未绑定 + if ($user == null || empty($user->mobile_phone) || empty($user->is_view)) { + $data = ['code' => 1, 'msg' => '未绑定']; } else { - $data = [ - 'code' => 0, - 'msg' => '未绑定', - ]; + //已绑定 + $form = new LoginForm(); + $form->cx_mch_id = $this->cx_mch_id; + $form->token_type = $this->_cx_token_type; + $form->username = $user->username; + $form->password = '123456'; + $data = $form->login(); } return $this->responseHandler($data); } diff --git a/modules/api/models/LoginByWxoaForm.php b/modules/api/models/LoginByWxoaForm.php index c218928..ff3af16 100644 --- a/modules/api/models/LoginByWxoaForm.php +++ b/modules/api/models/LoginByWxoaForm.php @@ -56,113 +56,35 @@ class LoginByWxoaForm extends ApiModel FlashStorage::setCache("m{$this->cx_mch_id}_c{$this->code}", $res, 864000); } - - $session_key = $res['data']['session_key']; - $openid = $res['data']['openid']; - $unionid = isset($res['data']['unionid']) ? $res['data']['unionid'] : null; - $res = $this->decrypted_data($session_key); if ($res['code'] != 0) { return $res; } - $decrypted_info = json_decode($res['data'], true); - $openid = $openid ? $openid : $decrypted_info['openId']; - $nickname = $decrypted_info['nickName']; - $avatar_url = empty($decrypted_info['avatarUrl']) ? User::DEFAULT_AVATAR_URL : $decrypted_info['avatarUrl']; - $gender = $decrypted_info['gender']; - if ($unionid == null) { - $unionid = isset($decrypted_info['unionId']) ? $decrypted_info['unionId'] : '0'; - } + + $access_token = $res['data']['access_token']; + $openid = $res['data']['openid']; //用户是否存在 $user_oauth = null; - if ($unionid != 0) { + if ($openid != 0) { //优选使用unionid $user_oauth = UserOauth::findOne([ 'cx_mch_id' => $this->cx_mch_id, 'is_delete' => 0, - 'unionid' => $unionid - ]); - } - if ($user_oauth == null) { - $user_oauth = UserOauth::findOne([ - 'cx_mch_id' => $this->cx_mch_id, - 'is_delete' => 0, - 'type' => SysConst::$cxOauthProviderWxmp, 'openid' => $openid ]); } - - $t = \Yii::$app->db->beginTransaction(); - if ($user_oauth != null) { - //用户是否存在 - $user = User::findOne([ - 'id' => $user_oauth->user_id, - 'is_delete' => 0, - 'cx_mch_id' => $this->cx_mch_id, - 'status' => User::STATUS_NORMAL - ]); - if ($user == null) { - \Yii::error("[LoginByWxmpForm] 用户(ID:{$user_oauth->user_id})不存在"); - return [ - 'code' => 1, - 'msg' => '系统内部异常,请联系管理员' - ]; - } - } else { - $form = new CommonUserEditForm(); - $form->scenario = 'wxmp_signup'; - $form->model = new User(); - $form->cx_mch_id = $this->cx_mch_id; - $form->username = User::generateUsername(3, "wx", 6); - $form->nickname = $nickname; - $form->avatar_url = $avatar_url; - $form->access_token = \Yii::$app->security->generateRandomString(); - $form->gender = $gender; - $form->is_modify_un = 1; - $res = $form->save(); - if ($res['code'] != 0) - return $res; - - $user = $form->model; - + if ($user_oauth == null) { $user_oauth = new UserOauth(); - $user_oauth->cx_mch_id = $this->cx_mch_id; - $user_oauth->type = SysConst::$cxOauthProviderWxmp; - $user_oauth->user_id = $user->id; + $user_oauth->cx_mch_id = 0; + $user_oauth->type = 'wxoa'; $user_oauth->openid = $openid; - $user_oauth->unionid = $unionid; - $user_oauth->is_delete = 0; $user_oauth->created_at = time(); + $res = $user_oauth->save(); + if ($res['code'] != 0) { + return ['code' => 1, 'msg' => '登陆失败']; + } } - //更新用户信息 - $user_oauth->nickname = $nickname; - $user_oauth->avatar_url = $avatar_url; - if ($unionid !== 0 && $user_oauth->unionid == 0) { - $user_oauth->unionid = $unionid; - } - if (!$user_oauth->save()) { - $t->rollBack(); - return $this->getModelError($user_oauth); - } - if (!\Yii::$app->user->login($user)) { - $t->commit(); - return [ - 'code' => 1, - 'msg' => '登录失败' - ]; - } - $args = []; - $args['cx_mch_id'] = $this->cx_mch_id; - $args['token_type'] = $this->token_type; - $atoken = new AToken($args); - $data = $atoken->generate_access_token(); - if ($data['code'] == 0) { - $err_msg = "微信小程序登录成功"; - User::lastLogin($user->id, 1, $err_msg, $this->cx_mch_id); - } - $t->commit(); - //是否需要绑定 - $data = User::bindQuery($user_oauth->user, $data); + $data = ['code' => 1, 'msg' => '登陆成功', 'data' => $openid]; return $data; } @@ -170,22 +92,33 @@ class LoginByWxoaForm extends ApiModel /*** * 用户数据解密 */ - private function decrypted_data($session_key) + private function curl_wechat_user($access_token, $openid) { - $pc = new WxBizDataCrypt($this->wechat_mp->appId, $session_key); - $errCode = $pc->decryptData($this->encrypted_data, $this->iv, $data); - if ($errCode == 0) { - return [ - 'code' => 0, - 'msg' => 'success', - 'data' => $data - ]; - } else { + + $api = "https://api.weixin.qq.com/sns/userinfo?access_token=" . $access_token . "&openid=" . $openid . "&lang=zh_CN"; + $this->wechat_mp->curl->get($api); + + if ($this->wechat_mp->curl->error_code != 0) { return [ 'code' => 1, - 'msg' => $errCode, + 'msg' => "err_code:{$this->wechat_mp->curl->error_code}err_msg:{$this->wechat_mp->curl->error_msg}" ]; } + + $resp = $this->wechat_mp->curl->response; + $res = json_decode($resp, true); + if (!isset($res['nickname']) || !isset($res['headimgurl'])) { + return [ + 'code' => 1, + 'msg' => isset($res['errmsg']) ? $res['errmsg'] : 'error' + ]; + } + return [ + 'code' => 0, + 'msg' => 'ok', + 'data' => $res + ]; + } private function code2session($code) diff --git a/modules/api/models/UserModifyForm.php b/modules/api/models/UserModifyForm.php index 52f145a..668f9d6 100644 --- a/modules/api/models/UserModifyForm.php +++ b/modules/api/models/UserModifyForm.php @@ -20,6 +20,7 @@ use app\models\User; use app\components\auth\AToken; use app\components\EncryptHelper; use app\models\UserInformation; +use app\models\UserOauth; use app\modules\api\components\ApiHelper; use yii\data\Pagination; @@ -33,11 +34,15 @@ class UserModifyForm extends ApiModel public $mobile_phone; public $gender; public $is_view; + public $openid; + public $token_type; + public function rules() { return [ + [['openid'], 'string'], [['real_name'], 'required'], [['gender'], 'required'], [['is_view'], 'required'], @@ -67,9 +72,9 @@ class UserModifyForm extends ApiModel return $this->getModelError(); } - $form = new LoginForm(); + //有绑定信息 去登陆 $user = User::findOne(['mobile_phone' => $this->mobile_phone]); if (!empty($user->mobile_phone) && !empty($user->is_view)) { $form = new LoginForm(); @@ -80,6 +85,7 @@ class UserModifyForm extends ApiModel return $form->login(); } + //没有信息 去绑定 $t = \Yii::$app->db->beginTransaction(); try { @@ -102,21 +108,33 @@ class UserModifyForm extends ApiModel $user->username = $username; $user->password = $password_encryption; $user->auth_key = \Yii::$app->security->generateRandomString();; + $res = $user->save(); - if (!$user->save()) { + if ($this->openid) { + $user_outh = UserOauth::findOne(['openid' => $this->openid]); + if ($user_outh == null) { + $t->rollBack(); + return ['code' => 1, 'msg' => '请重新进行微信授权',]; + } + if ($user_outh->user_id == 0) { + $user_outh->user_id = $user->id; + $res1 = $user_outh->save(); + if (!$res1) { + $t->rollBack(); + return $this->getModelError($user_outh); + } + } + } + + if (!$res) { $t->rollBack(); return $this->getModelError($user); } $t->commit(); - - $form->username = $username; $form->password = $password; $form->token_type = 3; - $data = $form->login(); - - return $data; } catch (\Exception $e) { $t->rollBack(); diff --git a/runtime/debug/6538f6986aeb4.data b/runtime/debug/6538f6986aeb4.data deleted file mode 100644 index cb103ef..0000000 --- a/runtime/debug/6538f6986aeb4.data +++ /dev/null @@ -1 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:2466:"a:1:{s:8:"messages";a:16:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.384681;i:4;a:0:{}i:5;i:2495472;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.384703;i:4;a:0:{}i:5;i:2496648;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231960.408487;i:4;a:0:{}i:5;i:3634824;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.425711;i:4;a:0:{}i:5;i:3637360;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.428091;i:4;a:0:{}i:5;i:3702576;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231960.428957;i:4;a:0:{}i:5;i:3699120;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.437064;i:4;a:0:{}i:5;i:4186136;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.439052;i:4;a:0:{}i:5;i:4310424;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.440893;i:4;a:0:{}i:5;i:4382704;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.441072;i:4;a:0:{}i:5;i:4383368;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.442216;i:4;a:0:{}i:5;i:4407392;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.442251;i:4;a:0:{}i:5;i:4413464;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231960.446391;i:4;a:0:{}i:5;i:4639376;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.446405;i:4;a:0:{}i:5;i:4641000;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231960.452576;i:4;a:0:{}i:5;i:4793240;}i:23;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.464002;i:4;a:0:{}i:5;i:4838168;}}}";s:9:"profiling";s:83:"a:3:{s:6:"memory";i:5141728;s:4:"time";d:0.10951089859008789;s:8:"messages";a:0:{}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:1405:"a:8:{i:0;a:5:{s:4:"time";d:1698231960.42807;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231960.444692;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231960.453108;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231960.453124;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231960.462481;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:5;a:5:{s:4:"time";d:1698231960.463768;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:6;a:5:{s:4:"time";d:1698231960.463816;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:7;a:5:{s:4:"time";d:1698231960.463829;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231960.357064;s:3:"end";d:1698231960.466606;s:6:"memory";i:5141728;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1687:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.44631;i:4;a:0:{}i:5;i:4633784;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.44633;i:4;a:0:{}i:5;i:4634536;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.446339;i:4;a:0:{}i:5;i:4635288;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.446347;i:4;a:0:{}i:5;i:4636040;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.446356;i:4;a:0:{}i:5;i:4636792;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.446366;i:4;a:0:{}i:5;i:4638184;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.446374;i:4;a:0:{}i:5;i:4638936;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.446379;i:4;a:0:{}i:5;i:4639312;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:5320:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:302;s:14:"requestHeaders";a:10:{s:6:"cookie";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:13:"cache-control";s:9:"max-age=0";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:9:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:8:"Location";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6986aeb4";s:16:"X-Debug-Duration";s:3:"108";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6986aeb4";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:44:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61512";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:18:"HTTP_CACHE_CONTROL";s:9:"max-age=0";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231960.319774;s:12:"REQUEST_TIME";i:1698231960;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"rtg5v642emvl8of88f34113ke9";s:5:"_csrf";s:130:"cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a:2:{i:0;s:5:"_csrf";i:1;s:32:"lPVy0PhqZSoj8SryHYT1frnzgoyybB78";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:1:{s:7:"__flash";a:0:{}}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6986aeb4";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231960.319774;s:10:"statusCode";i:302;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:5141728;s:14:"processingTime";d:0.10951089859008789;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f69884072.data b/runtime/debug/6538f69884072.data deleted file mode 100644 index f44e78c..0000000 --- a/runtime/debug/6538f69884072.data +++ /dev/null @@ -1,71 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:20582:"a:1:{s:8:"messages";a:41:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.514459;i:4;a:0:{}i:5;i:2496024;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.514479;i:4;a:0:{}i:5;i:2497200;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231960.53278;i:4;a:0:{}i:5;i:3635376;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.533254;i:4;a:0:{}i:5;i:3637912;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.534611;i:4;a:0:{}i:5;i:3703128;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231960.534833;i:4;a:0:{}i:5;i:3700064;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.540085;i:4;a:0:{}i:5;i:4186760;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.54169;i:4;a:0:{}i:5;i:4311048;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.543179;i:4;a:0:{}i:5;i:4383328;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.543362;i:4;a:0:{}i:5;i:4383992;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.543912;i:4;a:0:{}i:5;i:4408016;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.543945;i:4;a:0:{}i:5;i:4414088;}i:20;a:6:{i:0;s:39:"Route requested: 'store/passport/login'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231960.547302;i:4;a:0:{}i:5;i:4640000;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.547314;i:4;a:0:{}i:5;i:4641624;}i:22;a:6:{i:0;s:34:"Route to run: store/passport/login";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231960.553739;i:4;a:0:{}i:5;i:4848624;}i:23;a:6:{i:0;s:79:"Running action: app\modules\store\controllers\PassportController::actionLogin()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231960.554151;i:4;a:0:{}i:5;i:4856840;}i:24;a:6:{i:0;s:86:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231960.563867;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:45;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:5154344;}i:25;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.570371;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5616120;}i:26;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.571569;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5623768;}i:27;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.585218;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6375320;}i:28;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231960.585262;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6378504;}i:33;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.589278;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6532512;}i:36;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.596371;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6805632;}i:39;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.597423;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6809640;}i:40;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.597633;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6809944;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.597964;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6816912;}i:44;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.598484;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6820368;}i:45;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.598739;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6821384;}i:46;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.599052;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6828160;}i:49;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.599567;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6831680;}i:50;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.599731;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6832152;}i:51;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.600027;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6839760;}i:54;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.600535;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6843216;}i:55;a:6:{i:0;s:88:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231960.603156;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:45;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6861920;}i:56;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.611075;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7328104;}i:57;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.611696;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7335072;}i:60;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.612893;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7338528;}i:61;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.613305;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7339064;}i:62;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.614031;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7345840;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.614675;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7355160;}i:66;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.622883;i:4;a:0:{}i:5;i:7381600;}}}";s:9:"profiling";s:15395:"a:3:{s:6:"memory";i:7698416;s:4:"time";d:0.12785005569458008;s:8:"messages";a:18:{i:29;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231960.585278;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6380384;}i:30;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231960.586922;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6430296;}i:31;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.586949;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6431288;}i:32;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.587862;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6441536;}i:34;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.589316;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6536128;}i:35;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.589887;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6539264;}i:37;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.596421;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6807384;}i:38;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.59723;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6810480;}i:42;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.597997;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6818664;}i:43;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.598368;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6821704;}i:47;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.599078;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6829912;}i:48;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.599457;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6832968;}i:52;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.600051;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6841512;}i:53;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.600419;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6844552;}i:58;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.611727;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7336824;}i:59;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.612589;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7339864;}i:63;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.614062;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7347592;}i:64;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.614544;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7350688;}}}";s:2:"db";s:13833:"a:1:{s:8:"messages";a:16:{i:31;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.586949;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6431288;}i:32;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.587862;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6441536;}i:34;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.589316;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6536128;}i:35;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.589887;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6539264;}i:37;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.596421;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6807384;}i:38;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.59723;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6810480;}i:42;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.597997;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6818664;}i:43;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.598368;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6821704;}i:47;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.599078;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6829912;}i:48;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.599457;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6832968;}i:52;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.600051;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6841512;}i:53;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.600419;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\passport\login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6844552;}i:58;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.611727;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7336824;}i:59;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.612589;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7339864;}i:63;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.614062;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7347592;}i:64;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231960.614544;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:67:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7350688;}}}";s:5:"event";s:7226:"a:42:{i:0;a:5:{s:4:"time";d:1698231960.534596;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231960.546631;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231960.554093;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231960.554107;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231960.554121;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:5;a:5:{s:4:"time";d:1698231960.563858;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698231960.578795;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:7;a:5:{s:4:"time";d:1698231960.586914;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:8;a:5:{s:4:"time";d:1698231960.597288;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698231960.597348;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:10;a:5:{s:4:"time";d:1698231960.597805;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:11;a:5:{s:4:"time";d:1698231960.598404;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:12;a:5:{s:4:"time";d:1698231960.598445;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:13;a:5:{s:4:"time";d:1698231960.598909;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698231960.599491;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698231960.59953;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:16;a:5:{s:4:"time";d:1698231960.599897;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698231960.600459;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698231960.600498;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:19;a:5:{s:4:"time";d:1698231960.602196;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:20;a:5:{s:4:"time";d:1698231960.602731;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:21;a:5:{s:4:"time";d:1698231960.60275;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:22;a:5:{s:4:"time";d:1698231960.602792;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698231960.60315;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:24;a:5:{s:4:"time";d:1698231960.607899;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698231960.611528;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:26;a:5:{s:4:"time";d:1698231960.612638;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:27;a:5:{s:4:"time";d:1698231960.612767;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:28;a:5:{s:4:"time";d:1698231960.613685;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:29;a:5:{s:4:"time";d:1698231960.614582;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:30;a:5:{s:4:"time";d:1698231960.614626;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:31;a:5:{s:4:"time";d:1698231960.614851;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:32;a:5:{s:4:"time";d:1698231960.621178;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698231960.621344;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698231960.621509;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698231960.621528;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:36;a:5:{s:4:"time";d:1698231960.621541;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:37;a:5:{s:4:"time";d:1698231960.62155;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698231960.621563;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698231960.621574;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698231960.622344;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698231960.62264;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698231960.495631;s:3:"end";d:1698231960.62373;s:6:"memory";i:7698416;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1695:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547223;i:4;a:0:{}i:5;i:4634408;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547242;i:4;a:0:{}i:5;i:4635160;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547251;i:4;a:0:{}i:5;i:4635912;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547258;i:4;a:0:{}i:5;i:4636664;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547266;i:4;a:0:{}i:5;i:4637416;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547276;i:4;a:0:{}i:5;i:4638808;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547286;i:4;a:0:{}i:5;i:4639560;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.547291;i:4;a:0:{}i:5;i:4639936;}}s:5:"route";s:20:"store/passport/login";s:6:"action";s:63:"app\modules\store\controllers\PassportController::actionLogin()";}";s:7:"request";s:5445:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:10:{s:6:"cookie";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:13:"cache-control";s:9:"max-age=0";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f69884072";s:16:"X-Debug-Duration";s:3:"128";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f69884072";}s:5:"route";s:20:"store/passport/login";s:6:"action";s:63:"app\modules\store\controllers\PassportController::actionLogin()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:44:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:89:"/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:12:"QUERY_STRING";s:67:"return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:67:"return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:12:"REDIRECT_URL";s:21:"/store/passport/login";s:11:"REMOTE_PORT";s:5:"61512";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:18:"HTTP_CACHE_CONTROL";s:9:"max-age=0";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231960.47959;s:12:"REQUEST_TIME";i:1698231960;}s:3:"GET";a:1:{s:10:"return_url";s:40:"http://cxfoot.com/store/report/edit?id=1";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"rtg5v642emvl8of88f34113ke9";s:5:"_csrf";s:130:"cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a:2:{i:0;s:5:"_csrf";i:1;s:32:"lPVy0PhqZSoj8SryHYT1frnzgoyybB78";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:1:{s:7:"__flash";a:0:{}}}";s:4:"user";s:2:"N;";s:5:"asset";s:932:"a:2:{s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:35:"app\modules\admin\assets\LoginAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:43:"/statics/layuiadmin/style/login.css?v=1.0.0";}s:2:"js";a:0:{}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f69884072";s:3:"url";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231960.47959;s:10:"statusCode";i:200;s:8:"sqlCount";i:8;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7698416;s:14:"processingTime";d:0.12785005569458008;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f698b5786.data b/runtime/debug/6538f698b5786.data deleted file mode 100644 index 803ab24..0000000 --- a/runtime/debug/6538f698b5786.data +++ /dev/null @@ -1 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:2714:"a:1:{s:8:"messages";a:17:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.710236;i:4;a:0:{}i:5;i:2494384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.710258;i:4;a:0:{}i:5;i:2495560;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231960.734216;i:4;a:0:{}i:5;i:3633736;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.734748;i:4;a:0:{}i:5;i:3636272;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.736155;i:4;a:0:{}i:5;i:3701488;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231960.736375;i:4;a:0:{}i:5;i:3698424;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.742575;i:4;a:0:{}i:5;i:4185120;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.744241;i:4;a:0:{}i:5;i:4309408;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.747444;i:4;a:0:{}i:5;i:4381688;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.74781;i:4;a:0:{}i:5;i:4382352;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.748607;i:4;a:0:{}i:5;i:4406376;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.748648;i:4;a:0:{}i:5;i:4412448;}i:20;a:6:{i:0;s:41:"Route requested: 'store/passport/captcha'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231960.751373;i:4;a:0:{}i:5;i:4636432;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.751385;i:4;a:0:{}i:5;i:4638064;}i:22;a:6:{i:0;s:36:"Route to run: store/passport/captcha";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231960.756698;i:4;a:0:{}i:5;i:4839960;}i:23;a:6:{i:0;s:117:"Running action: app\components\ResetCaptchaAction::run(), invoked by app\modules\store\controllers\PassportController";i:1;i:8;i:2;s:30:"yii\base\Action::runWithParams";i:3;d:1698231960.757503;i:4;a:0:{}i:5;i:4848224;}i:24;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.780628;i:4;a:0:{}i:5;i:4981384;}}}";s:9:"profiling";s:83:"a:3:{s:6:"memory";i:5241704;s:4:"time";d:0.09570002555847168;s:8:"messages";a:0:{}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:2191:"a:12:{i:0;a:5:{s:4:"time";d:1698231960.73614;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231960.750715;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231960.757437;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231960.757453;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231960.757468;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:5;a:5:{s:4:"time";d:1698231960.764561;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:6;a:5:{s:4:"time";d:1698231960.764594;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:7;a:5:{s:4:"time";d:1698231960.764606;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:8;a:5:{s:4:"time";d:1698231960.764625;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:9;a:5:{s:4:"time";d:1698231960.764637;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:10;a:5:{s:4:"time";d:1698231960.78035;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:11;a:5:{s:4:"time";d:1698231960.780473;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231960.691144;s:3:"end";d:1698231960.786885;s:6:"memory";i:5241704;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1673:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751298;i:4;a:0:{}i:5;i:4631144;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751315;i:4;a:0:{}i:5;i:4631896;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751324;i:4;a:0:{}i:5;i:4632648;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751331;i:4;a:0:{}i:5;i:4633400;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.75134;i:4;a:0:{}i:5;i:4634152;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751349;i:4;a:0:{}i:5;i:4635544;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751358;i:4;a:0:{}i:5;i:4636296;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.751363;i:4;a:0:{}i:5;i:4636672;}}s:5:"route";s:22:"store/passport/captcha";s:6:"action";s:40:"app\components\ResetCaptchaAction::run()";}";s:7:"request";s:5059:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:8:{s:6:"cookie";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:6:"accept";s:64:"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:9:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:6:"Pragma";s:6:"public";s:7:"Expires";s:1:"0";s:13:"Cache-Control";s:42:"must-revalidate, post-check=0, pre-check=0";s:25:"Content-Transfer-Encoding";s:6:"binary";s:12:"Content-Type";s:9:"image/png";s:11:"X-Debug-Tag";s:13:"6538f698b5786";s:16:"X-Debug-Duration";s:2:"90";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f698b5786";}s:5:"route";s:22:"store/passport/captcha";s:6:"action";s:40:"app\components\ResetCaptchaAction::run()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:41:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/passport/captcha";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:23:"/store/passport/captcha";s:11:"REMOTE_PORT";s:5:"61513";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:11:"HTTP_ACCEPT";s:64:"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231960.673404;s:12:"REQUEST_TIME";i:1698231960;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"rtg5v642emvl8of88f34113ke9";s:5:"_csrf";s:130:"cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a:2:{i:0;s:5:"_csrf";i:1;s:32:"lPVy0PhqZSoj8SryHYT1frnzgoyybB78";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:3:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f698b5786";s:3:"url";s:40:"http://cxfoot.com/store/passport/captcha";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231960.673404;s:10:"statusCode";i:200;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:5241704;s:14:"processingTime";d:0.09570002555847168;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f698cd2dc.data b/runtime/debug/6538f698cd2dc.data deleted file mode 100644 index 41f067a..0000000 --- a/runtime/debug/6538f698cd2dc.data +++ /dev/null @@ -1,12 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:3462:"a:1:{s:8:"messages";a:16:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.792789;i:4;a:0:{}i:5;i:2494512;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.792892;i:4;a:0:{}i:5;i:2495688;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231960.829625;i:4;a:0:{}i:5;i:3633864;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.830138;i:4;a:0:{}i:5;i:3636400;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.83237;i:4;a:0:{}i:5;i:3701616;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231960.83265;i:4;a:0:{}i:5;i:3698800;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.83954;i:4;a:0:{}i:5;i:4185496;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.8415;i:4;a:0:{}i:5;i:4309784;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.843316;i:4;a:0:{}i:5;i:4382064;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231960.843497;i:4;a:0:{}i:5;i:4382728;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231960.844555;i:4;a:0:{}i:5;i:4406752;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.844589;i:4;a:0:{}i:5;i:4412824;}i:20;a:6:{i:0;s:73:"Route requested: 'upload/0/1/upload/image/2022/1119/1668852380664724.png'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231960.849245;i:4;a:0:{}i:5;i:4636872;}i:21;a:6:{i:0;s:925:"yii\base\InvalidRouteException: Unable to resolve the request "upload/0/1/upload/image/2022/1119/1668852380664724.png". in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php:561 -Stack trace: -#0 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('upload/0/1/uplo...', Array) -#1 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#2 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() -#3 {main} - -Next yii\web\NotFoundHttpException: 页面未找到。 in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php:115 -Stack trace: -#0 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#1 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() -#2 {main}";i:1;i:1;i:2;s:25:"yii\web\HttpException:404";i:3;d:1698231960.855142;i:4;a:0:{}i:5;i:4465384;}i:22;a:6:{i:0;s:96:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/error.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231960.858065;i:4;a:0:{}i:5;i:4584736;}i:23;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231960.872828;i:4;a:0:{}i:5;i:4909704;}}}";s:9:"profiling";s:82:"a:3:{s:6:"memory";i:5055160;s:4:"time";d:0.1185610294342041;s:8:"messages";a:0:{}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:1696:"a:10:{i:0;a:5:{s:4:"time";d:1698231960.832351;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231960.848404;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231960.858057;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:3;a:5:{s:4:"time";d:1698231960.858976;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:4;a:5:{s:4:"time";d:1698231960.859017;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698231960.859028;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698231960.859071;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:7;a:5:{s:4:"time";d:1698231960.859091;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:8;a:5:{s:4:"time";d:1698231960.865175;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:9;a:5:{s:4:"time";d:1698231960.865236;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231960.754692;s:3:"end";d:1698231960.873286;s:6:"memory";i:5055160;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1658:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.849165;i:4;a:0:{}i:5;i:4631552;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.849184;i:4;a:0:{}i:5;i:4632304;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.849194;i:4;a:0:{}i:5;i:4633056;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.849202;i:4;a:0:{}i:5;i:4633808;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.84921;i:4;a:0:{}i:5;i:4634560;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.84922;i:4;a:0:{}i:5;i:4635952;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.849229;i:4;a:0:{}i:5;i:4636704;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231960.849234;i:4;a:0:{}i:5;i:4637080;}}s:5:"route";s:54:"upload/0/1/upload/image/2022/1119/1668852380664724.png";s:6:"action";N;}";s:7:"request";s:5100:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:404;s:14:"requestHeaders";a:8:{s:6:"cookie";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:6:"accept";s:64:"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f698cd2dc";s:16:"X-Debug-Duration";s:3:"111";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f698cd2dc";}s:5:"route";s:54:"upload/0/1/upload/image/2022/1119/1668852380664724.png";s:6:"action";N;s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:41:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:55:"/upload/0/1/upload/image/2022/1119/1668852380664724.png";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:55:"/upload/0/1/upload/image/2022/1119/1668852380664724.png";s:11:"REMOTE_PORT";s:5:"61512";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:11:"HTTP_ACCEPT";s:64:"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231960.681109;s:12:"REQUEST_TIME";i:1698231960;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"rtg5v642emvl8of88f34113ke9";s:5:"_csrf";s:130:"cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a:2:{i:0;s:5:"_csrf";i:1;s:32:"lPVy0PhqZSoj8SryHYT1frnzgoyybB78";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:3:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f698cd2dc";s:3:"url";s:72:"http://cxfoot.com/upload/0/1/upload/image/2022/1119/1668852380664724.png";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231960.681109;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:5055160;s:14:"processingTime";d:0.1185610294342041;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6a524b71.data b/runtime/debug/6538f6a524b71.data deleted file mode 100644 index 6a1c770..0000000 --- a/runtime/debug/6538f6a524b71.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:17803:"a:1:{s:8:"messages";a:35:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231973.123771;i:4;a:0:{}i:5;i:2496824;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231973.12379;i:4;a:0:{}i:5;i:2498000;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231973.142585;i:4;a:0:{}i:5;i:3636176;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231973.143025;i:4;a:0:{}i:5;i:3638712;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231973.144352;i:4;a:0:{}i:5;i:3703928;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231973.14454;i:4;a:0:{}i:5;i:3701112;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231973.149667;i:4;a:0:{}i:5;i:4187808;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231973.151729;i:4;a:0:{}i:5;i:4312096;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231973.154508;i:4;a:0:{}i:5;i:4384376;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231973.15482;i:4;a:0:{}i:5;i:4385040;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231973.155428;i:4;a:0:{}i:5;i:4409064;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231973.155464;i:4;a:0:{}i:5;i:4415136;}i:20;a:6:{i:0;s:39:"Route requested: 'store/passport/login'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231973.157877;i:4;a:0:{}i:5;i:4641752;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231973.157887;i:4;a:0:{}i:5;i:4643376;}i:22;a:6:{i:0;s:34:"Route to run: store/passport/login";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231973.162681;i:4;a:0:{}i:5;i:4850376;}i:23;a:6:{i:0;s:79:"Running action: app\modules\store\controllers\PassportController::actionLogin()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231973.16313;i:4;a:0:{}i:5;i:4858720;}i:24;a:6:{i:0;s:79:"Failed to set unsafe attribute '_csrf' in 'app\modules\store\models\LoginForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698231973.174624;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:41;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:5324504;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.193022;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6531656;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231973.193063;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6534464;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.202575;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6622128;}i:34;a:6:{i:0;s:95:"SELECT * FROM `cx_store_user` WHERE (`username`='test123') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.208386;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6895248;}i:37;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.047748;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6958712;}i:40;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.048987;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6972472;}i:43;a:6:{i:0;s:175:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, 93, 0, '127.0.0.1', 1, '登录成功', 1698231974)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.053522;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:7153184;}i:46;a:6:{i:0;s:31:"Executing Redis Command: EXISTS";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231974.084263;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7159592;}i:47;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231974.084462;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7161528;}i:48;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231974.084627;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7162584;}i:49;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.084879;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7168312;}i:52;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.08682;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7190408;}i:55;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.087638;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7197016;}i:58;a:6:{i:0;s:51:"User '93' logged in from 127.0.0.1 with duration 0.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698231974.089112;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7250184;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.08992;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7298176;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.091198;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7317088;}i:65;a:6:{i:0;s:490:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/passport/login', 'store', 'passport', 'login', '/store/passport/login', 'POST', '{\"username\":\"test123\",\"password\":\"12345678\"}', '127.0.0.1', 1, '2023-10-25', 1698231973160, 1698231974091, 931, 0, 1698231974)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.092935;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7351856;}i:68;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231974.115368;i:4;a:0:{}i:5;i:7154016;}}}";s:9:"profiling";s:25037:"a:3:{s:6:"memory";i:7451056;s:4:"time";d:1.01224684715271;s:8:"messages";a:26:{i:27;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231973.193079;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6535968;}i:28;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231973.194723;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6585824;}i:29;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.194751;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6586440;}i:30;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.200654;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6600552;}i:32;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.202647;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6625368;}i:33;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.203454;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6629408;}i:35;a:6:{i:0;s:95:"SELECT * FROM `cx_store_user` WHERE (`username`='test123') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.208425;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6896656;}i:36;a:6:{i:0;s:95:"SELECT * FROM `cx_store_user` WHERE (`username`='test123') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.208973;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6900240;}i:38;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.047786;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6960856;}i:39;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.048687;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6973064;}i:41;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.049015;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6976088;}i:42;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.049624;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6979224;}i:44;a:6:{i:0;s:175:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, 93, 0, '127.0.0.1', 1, '登录成功', 1698231974)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.053561;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:7154056;}i:45;a:6:{i:0;s:175:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, 93, 0, '127.0.0.1', 1, '登录成功', 1698231974)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.082924;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:7156168;}i:50;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.084909;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7170432;}i:51;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.085993;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7200576;}i:53;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.086859;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7194024;}i:54;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.0874;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7197160;}i:56;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.087663;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7198768;}i:57;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.087995;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7205280;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.089945;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7300296;}i:61;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.090763;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7323256;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.091222;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7320704;}i:64;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.091649;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7323840;}i:66;a:6:{i:0;s:490:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/passport/login', 'store', 'passport', 'login', '/store/passport/login', 'POST', '{\"username\":\"test123\",\"password\":\"12345678\"}', '127.0.0.1', 1, '2023-10-25', 1698231973160, 1698231974091, 931, 0, 1698231974)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.092976;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7350216;}i:67;a:6:{i:0;s:490:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/passport/login', 'store', 'passport', 'login', '/store/passport/login', 'POST', '{\"username\":\"test123\",\"password\":\"12345678\"}', '127.0.0.1', 1, '2023-10-25', 1698231973160, 1698231974091, 931, 0, 1698231974)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.111505;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7352744;}}}";s:2:"db";s:23802:"a:1:{s:8:"messages";a:24:{i:29;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.194751;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6586440;}i:30;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.200654;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6600552;}i:32;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.202647;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6625368;}i:33;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.203454;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6629408;}i:35;a:6:{i:0;s:95:"SELECT * FROM `cx_store_user` WHERE (`username`='test123') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.208425;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6896656;}i:36;a:6:{i:0;s:95:"SELECT * FROM `cx_store_user` WHERE (`username`='test123') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231973.208973;i:4;a:2:{i:0;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:65;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:6900240;}i:38;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.047786;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6960856;}i:39;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.048687;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6973064;}i:41;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.049015;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6976088;}i:42;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.049624;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:6979224;}i:44;a:6:{i:0;s:175:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, 93, 0, '127.0.0.1', 1, '登录成功', 1698231974)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.053561;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:7154056;}i:45;a:6:{i:0;s:175:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, 93, 0, '127.0.0.1', 1, '登录成功', 1698231974)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.082924;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:43:"D:\phpstudy_pro\WWW\cxfoot\models\Admin.php";s:4:"line";i:213;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:95;s:8:"function";s:9:"lastLogin";s:5:"class";s:16:"app\models\Admin";s:4:"type";s:2:"::";}}i:5;i:7156168;}i:50;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.084909;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7170432;}i:51;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.085993;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7200576;}i:53;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.086859;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7194024;}i:54;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.0874;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7197160;}i:56;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.087663;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7198768;}i:57;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.087995;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:61:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\LoginForm.php";s:4:"line";i:100;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:75:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\PassportController.php";s:4:"line";i:42;s:8:"function";s:5:"login";s:5:"class";s:34:"app\modules\store\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7205280;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.089945;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7300296;}i:61;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.090763;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7323256;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.091222;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7320704;}i:64;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231974.091649;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7323840;}i:66;a:6:{i:0;s:490:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/passport/login', 'store', 'passport', 'login', '/store/passport/login', 'POST', '{\"username\":\"test123\",\"password\":\"12345678\"}', '127.0.0.1', 1, '2023-10-25', 1698231973160, 1698231974091, 931, 0, 1698231974)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.092976;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7350216;}i:67;a:6:{i:0;s:490:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/passport/login', 'store', 'passport', 'login', '/store/passport/login', 'POST', '{\"username\":\"test123\",\"password\":\"12345678\"}', '127.0.0.1', 1, '2023-10-25', 1698231973160, 1698231974091, 931, 0, 1698231974)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231974.111505;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7352744;}}}";s:5:"event";s:5926:"a:33:{i:0;a:5:{s:4:"time";d:1698231973.144338;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231973.157249;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231973.163027;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231973.163041;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231973.163053;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:5;a:5:{s:4:"time";d:1698231973.175148;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:34:"app\modules\store\models\LoginForm";}i:6;a:5:{s:4:"time";d:1698231973.175376;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:34:"app\modules\store\models\LoginForm";}i:7;a:5:{s:4:"time";d:1698231973.187945;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:8;a:5:{s:4:"time";d:1698231973.194714;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:9;a:5:{s:4:"time";d:1698231973.209025;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:10;a:5:{s:4:"time";d:1698231973.209082;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:11;a:5:{s:4:"time";d:1698231974.047672;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:12;a:5:{s:4:"time";d:1698231974.050528;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:13;a:5:{s:4:"time";d:1698231974.0523;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:14;a:5:{s:4:"time";d:1698231974.052319;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:15;a:5:{s:4:"time";d:1698231974.083651;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:16;a:5:{s:4:"time";d:1698231974.084181;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:17;a:5:{s:4:"time";d:1698231974.084807;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698231974.088035;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698231974.088105;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698231974.089138;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:21;a:5:{s:4:"time";d:1698231974.089874;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:22;a:5:{s:4:"time";d:1698231974.091839;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698231974.092727;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698231974.092744;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698231974.111615;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698231974.111659;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:27;a:5:{s:4:"time";d:1698231974.111672;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:28;a:5:{s:4:"time";d:1698231974.111681;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:29;a:5:{s:4:"time";d:1698231974.111695;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698231974.111707;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:31;a:5:{s:4:"time";d:1698231974.115017;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698231974.115103;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231973.105477;s:3:"end";d:1698231974.118017;s:6:"memory";i:7451056;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157806;i:4;a:0:{}i:5;i:4636480;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.15782;i:4;a:0:{}i:5;i:4637232;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157829;i:4;a:0:{}i:5;i:4637984;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157836;i:4;a:0:{}i:5;i:4638736;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157845;i:4;a:0:{}i:5;i:4639488;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157854;i:4;a:0:{}i:5;i:4640880;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157862;i:4;a:0:{}i:5;i:4641632;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231973.157867;i:4;a:0:{}i:5;i:4642008;}}s:5:"route";s:20:"store/passport/login";s:6:"action";s:63:"app\modules\store\controllers\PassportController::actionLogin()";}";s:7:"request";s:6616:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:3:"150";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:9:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:10:"Set-Cookie";a:3:{i:0;s:54:"PHPSESSID=8les3psm8u9msejmnje2ei0987; path=/; HttpOnly";i:1;s:105:"_store_identity=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/; HttpOnly; SameSite=Lax";i:2;s:204:"_csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6a524b71";s:16:"X-Debug-Duration";s:5:"1,011";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6a524b71";}s:5:"route";s:20:"store/passport/login";s:6:"action";s:63:"app\modules\store\controllers\PassportController::actionLogin()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:3:{s:12:"Content Type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:3:"Raw";s:150:"username=test123&password=12345678&captcha_code=www&_csrf=2UK53pgCt7Ue_cIUDY3fad8b5XpVXIlwhKxj8ocu7xe1Eu-nqFLfxESurX413q0Ql0KxSzMu5wrjwxqL5WzYLw%3D%3D";s:17:"Decoded to Params";a:4:{s:8:"username";s:7:"test123";s:8:"password";s:8:"12345678";s:12:"captcha_code";s:3:"www";s:5:"_csrf";s:88:"2UK53pgCt7Ue_cIUDY3fad8b5XpVXIlwhKxj8ocu7xe1Eu-nqFLfxESurX413q0Ql0KxSzMu5wrjwxqL5WzYLw==";}}s:6:"SERVER";a:45:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:21:"/store/passport/login";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:21:"/store/passport/login";s:11:"REMOTE_PORT";s:5:"61534";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=rtg5v642emvl8of88f34113ke9; _csrf=cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lPVy0PhqZSoj8SryHYT1frnzgoyybB78%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:3:"150";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231973.090053;s:12:"REQUEST_TIME";i:1698231973;}s:3:"GET";a:0:{}s:4:"POST";a:4:{s:8:"username";s:7:"test123";s:8:"password";s:8:"12345678";s:12:"captcha_code";s:3:"www";s:5:"_csrf";s:88:"2UK53pgCt7Ue_cIUDY3fad8b5XpVXIlwhKxj8ocu7xe1Eu-nqFLfxESurX413q0Ql0KxSzMu5wrjwxqL5WzYLw==";}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"rtg5v642emvl8of88f34113ke9";s:5:"_csrf";s:130:"cfe961e2bf8116c0cd94d1653d40764781c3555617fb3fe2fd465ea9feb04915a:2:{i:0;s:5:"_csrf";i:1;s:32:"lPVy0PhqZSoj8SryHYT1frnzgoyybB78";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6a524b71";s:3:"url";s:38:"http://cxfoot.com/store/passport/login";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231973.090053;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7451056;s:14:"processingTime";d:1.01224684715271;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6a7676d1.data b/runtime/debug/6538f6a7676d1.data deleted file mode 100644 index 7412312..0000000 --- a/runtime/debug/6538f6a7676d1.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22177:"a:1:{s:8:"messages";a:44:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231975.396367;i:4;a:0:{}i:5;i:2495536;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231975.396387;i:4;a:0:{}i:5;i:2496712;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231975.414954;i:4;a:0:{}i:5;i:3634888;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.415432;i:4;a:0:{}i:5;i:3637424;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.41669;i:4;a:0:{}i:5;i:3702640;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231975.416881;i:4;a:0:{}i:5;i:3700032;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231975.422441;i:4;a:0:{}i:5;i:4186728;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.424824;i:4;a:0:{}i:5;i:4311016;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.426725;i:4;a:0:{}i:5;i:4383296;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231975.42691;i:4;a:0:{}i:5;i:4383960;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231975.42748;i:4;a:0:{}i:5;i:4407984;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.427514;i:4;a:0:{}i:5;i:4414056;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231975.429946;i:4;a:0:{}i:5;i:4639568;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231975.429956;i:4;a:0:{}i:5;i:4641192;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231975.433668;i:4;a:0:{}i:5;i:4793432;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.452795;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6075016;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231975.452845;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077824;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.457119;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6165168;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.463562;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502728;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.465178;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590584;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.466724;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612680;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467427;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619288;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231975.467956;i:4;a:0:{}i:5;i:6614376;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.468619;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6645112;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.475822;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6657864;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476551;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660920;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477101;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6667448;}i:57;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477655;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6674544;}i:60;a:6:{i:0;s:83:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231975.480573;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6804200;}i:61;a:6:{i:0;s:75:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\widgets\views\pick-file.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231975.485793;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\widgets\PickFile.php";s:4:"line";i:127;s:8:"function";s:6:"render";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:62:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";s:4:"line";i:54;s:8:"function";s:6:"widget";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6993424;}i:62;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231975.487809;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7001384;}i:63;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.494471;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7485992;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.495349;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7493648;}i:65;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.495626;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7505640;}i:68;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.496797;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7518224;}i:71;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497472;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7523656;}i:74;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.498022;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7527344;}i:75;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.50049;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7576496;}i:76;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.500795;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7583272;}i:79;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.501251;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586792;}i:80;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.50141;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587264;}i:81;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.501697;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7594040;}i:84;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.502175;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7597488;}i:85;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231975.511826;i:4;a:0:{}i:5;i:7630936;}}}";s:9:"profiling";s:25897:"a:3:{s:6:"memory";i:7959288;s:4:"time";d:0.13539505004882812;s:8:"messages";a:34:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231975.452864;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6079328;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231975.454428;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128864;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.454457;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129480;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.455635;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143592;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.45717;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168408;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.4588;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171168;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.463599;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505616;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.464064;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509248;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.465205;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592704;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.466143;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622848;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.466751;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616296;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467206;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619432;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467452;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621040;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467781;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627552;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.468651;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646480;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.475469;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660848;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.475854;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660728;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476392;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6663112;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476572;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662368;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476853;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665840;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477122;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668904;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.47737;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672016;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477677;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675968;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477957;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681328;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.495659;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507760;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.496558;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517704;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.496825;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521840;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497312;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524976;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497496;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525408;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497889;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528504;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.50082;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7585024;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.501137;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7588080;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.501722;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595792;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.502065;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598832;}}}";s:2:"db";s:24733:"a:1:{s:8:"messages";a:32:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.454457;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129480;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.455635;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143592;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.45717;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168408;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.4588;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171168;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.463599;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505616;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.464064;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509248;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.465205;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592704;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.466143;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622848;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.466751;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616296;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467206;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619432;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467452;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621040;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.467781;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627552;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.468651;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646480;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.475469;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660848;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.475854;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660728;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476392;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6663112;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476572;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662368;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.476853;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665840;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477122;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668904;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.47737;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672016;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477677;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675968;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.477957;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681328;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.495659;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507760;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.496558;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517704;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.496825;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521840;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497312;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524976;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497496;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525408;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.497889;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528504;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.50082;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7585024;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.501137;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7588080;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.501722;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595792;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231975.502065;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598832;}}}";s:5:"event";s:10146:"a:59:{i:0;a:5:{s:4:"time";d:1698231975.416676;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231975.429332;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231975.434005;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231975.434018;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231975.44823;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698231975.454422;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698231975.464116;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698231975.464169;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698231975.465112;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698231975.467817;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698231975.467882;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698231975.467912;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698231975.468565;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698231975.476895;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698231975.476944;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698231975.476981;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698231975.477403;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698231975.477447;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698231975.477487;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:19;a:5:{s:4:"time";d:1698231975.477996;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698231975.478062;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698231975.480566;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698231975.485109;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:23;a:5:{s:4:"time";d:1698231975.485416;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:24;a:5:{s:4:"time";d:1698231975.485787;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698231975.487263;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:26;a:5:{s:4:"time";d:1698231975.487284;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:27;a:5:{s:4:"time";d:1698231975.487298;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:28;a:5:{s:4:"time";d:1698231975.487333;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:29;a:5:{s:4:"time";d:1698231975.487344;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:30;a:5:{s:4:"time";d:1698231975.487367;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:31;a:5:{s:4:"time";d:1698231975.487429;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:32;a:5:{s:4:"time";d:1698231975.487441;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:33;a:5:{s:4:"time";d:1698231975.487467;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698231975.487804;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698231975.489852;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:36;a:5:{s:4:"time";d:1698231975.49554;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:37;a:5:{s:4:"time";d:1698231975.497926;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:38;a:5:{s:4:"time";d:1698231975.49797;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:39;a:5:{s:4:"time";d:1698231975.498196;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:40;a:5:{s:4:"time";d:1698231975.500355;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:41;a:5:{s:4:"time";d:1698231975.500367;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:42;a:5:{s:4:"time";d:1698231975.500442;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:43;a:5:{s:4:"time";d:1698231975.500663;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:44;a:5:{s:4:"time";d:1698231975.501171;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:45;a:5:{s:4:"time";d:1698231975.501209;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:46;a:5:{s:4:"time";d:1698231975.501568;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:47;a:5:{s:4:"time";d:1698231975.5021;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:48;a:5:{s:4:"time";d:1698231975.502138;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:49;a:5:{s:4:"time";d:1698231975.509008;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:50;a:5:{s:4:"time";d:1698231975.509284;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:51;a:5:{s:4:"time";d:1698231975.509507;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:52;a:5:{s:4:"time";d:1698231975.509532;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:53;a:5:{s:4:"time";d:1698231975.509544;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:54;a:5:{s:4:"time";d:1698231975.509553;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:55;a:5:{s:4:"time";d:1698231975.509567;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:56;a:5:{s:4:"time";d:1698231975.509578;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:57;a:5:{s:4:"time";d:1698231975.51035;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:58;a:5:{s:4:"time";d:1698231975.51051;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231975.377146;s:3:"end";d:1698231975.512928;s:6:"memory";i:7959288;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1688:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429876;i:4;a:0:{}i:5;i:4633976;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429889;i:4;a:0:{}i:5;i:4634728;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429898;i:4;a:0:{}i:5;i:4635480;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429905;i:4;a:0:{}i:5;i:4636232;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429914;i:4;a:0:{}i:5;i:4636984;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429922;i:4;a:0:{}i:5;i:4638376;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.42993;i:4;a:0:{}i:5;i:4639128;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231975.429935;i:4;a:0:{}i:5;i:4639504;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:5452:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6a7676d1";s:16:"X-Debug-Duration";s:3:"134";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6a7676d1";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61534";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:106:"http://cxfoot.com/store/passport/login?return_url=http%3A%2F%2Fcxfoot.com%2Fstore%2Freport%2Fedit%3Fid%3D1";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231975.360637;s:12:"REQUEST_TIME";i:1698231975;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:1615:"a:3:{s:52:"/statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";a:9:{s:10:"sourcePath";N;s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:7:"depends";a:1:{i:0;s:33:"app\modules\admin\assets\AppAsset";}s:2:"js";a:1:{i:0;a:1:{i:0;s:51:"statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";}}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6a7676d1";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231975.360637;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7959288;s:14:"processingTime";d:0.13539505004882812;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6ad4c911.data b/runtime/debug/6538f6ad4c911.data deleted file mode 100644 index 1b16186..0000000 --- a/runtime/debug/6538f6ad4c911.data +++ /dev/null @@ -1,141 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:9239:"a:1:{s:8:"messages";a:24:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231981.279604;i:4;a:0:{}i:5;i:2496048;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231981.279625;i:4;a:0:{}i:5;i:2497224;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231981.304791;i:4;a:0:{}i:5;i:3635400;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231981.305279;i:4;a:0:{}i:5;i:3637936;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231981.306965;i:4;a:0:{}i:5;i:3703152;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231981.307182;i:4;a:0:{}i:5;i:3700544;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231981.312798;i:4;a:0:{}i:5;i:4187240;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231981.314668;i:4;a:0:{}i:5;i:4311528;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231981.317116;i:4;a:0:{}i:5;i:4383808;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231981.318341;i:4;a:0:{}i:5;i:4384472;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231981.319507;i:4;a:0:{}i:5;i:4408496;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231981.319587;i:4;a:0:{}i:5;i:4414568;}i:20;a:6:{i:0;s:35:"Route requested: 'file/upload/file'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231981.322448;i:4;a:0:{}i:5;i:4641120;}i:21;a:6:{i:0;s:20:"Loading module: file";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231981.32246;i:4;a:0:{}i:5;i:4642744;}i:22;a:6:{i:0;s:30:"Route to run: file/upload/file";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231981.327876;i:4;a:0:{}i:5;i:4873264;}i:23;a:6:{i:0;s:75:"Running action: app\modules\file\controllers\UploadController::actionFile()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231981.328275;i:4;a:0:{}i:5;i:4881480;}i:24;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.352377;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5785280;}i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231981.352443;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5853624;}i:30;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.363077;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5941168;}i:33;a:6:{i:0;s:197:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698231981203056.txt', 'txt', '', 264, 0)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.374711;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6469584;}i:36;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.396139;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6510408;}i:39;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.397565;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6529320;}i:42;a:6:{i:0;s:427:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698231981327, 1698231981399, 72, 0, 1698231981)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.401631;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6653152;}i:45;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231981.429083;i:4;a:0:{}i:5;i:6510512;}}}";s:9:"profiling";s:13246:"a:3:{s:6:"memory";i:6813560;s:4:"time";d:0.17304396629333496;s:8:"messages";a:14:{i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231981.35246;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5855128;}i:27;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231981.354495;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5904664;}i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.354534;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5905280;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.361044;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5919480;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.363116;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5944408;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.363719;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5947168;}i:34;a:6:{i:0;s:197:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698231981203056.txt', 'txt', '', 264, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.374752;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6470048;}i:35;a:6:{i:0;s:197:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698231981203056.txt', 'txt', '', 264, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.394416;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6471816;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.39617;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6512528;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.397117;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6535488;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.397591;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6532936;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.398085;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6536072;}i:43;a:6:{i:0;s:427:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698231981327, 1698231981399, 72, 0, 1698231981)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.401674;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6651512;}i:44;a:6:{i:0;s:427:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698231981327, 1698231981399, 72, 0, 1698231981)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.424271;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6653912;}}}";s:2:"db";s:11959:"a:1:{s:8:"messages";a:12:{i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.354534;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5905280;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.361044;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5919480;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.363116;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5944408;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.363719;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5947168;}i:34;a:6:{i:0;s:197:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698231981203056.txt', 'txt', '', 264, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.374752;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6470048;}i:35;a:6:{i:0;s:197:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698231981203056.txt', 'txt', '', 264, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.394416;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6471816;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.39617;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6512528;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.397117;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6535488;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.397591;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6532936;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231981.398085;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6536072;}i:43;a:6:{i:0;s:427:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698231981327, 1698231981399, 72, 0, 1698231981)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.401674;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6651512;}i:44;a:6:{i:0;s:427:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698231981327, 1698231981399, 72, 0, 1698231981)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231981.424271;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6653912;}}}";s:5:"event";s:4177:"a:23:{i:0;a:5:{s:4:"time";d:1698231981.30695;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231981.321807;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231981.328235;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231981.328251;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:4;a:5:{s:4:"time";d:1698231981.328262;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:5;a:5:{s:4:"time";d:1698231981.344599;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:6;a:5:{s:4:"time";d:1698231981.354484;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698231981.364359;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:8;a:5:{s:4:"time";d:1698231981.370133;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:9;a:5:{s:4:"time";d:1698231981.370156;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:10;a:5:{s:4:"time";d:1698231981.395121;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:11;a:5:{s:4:"time";d:1698231981.396078;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:12;a:5:{s:4:"time";d:1698231981.399205;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:13;a:5:{s:4:"time";d:1698231981.401391;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:14;a:5:{s:4:"time";d:1698231981.401411;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:15;a:5:{s:4:"time";d:1698231981.424465;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698231981.42451;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:17;a:5:{s:4:"time";d:1698231981.424524;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:18;a:5:{s:4:"time";d:1698231981.424534;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:19;a:5:{s:4:"time";d:1698231981.424548;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:20;a:5:{s:4:"time";d:1698231981.42456;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:21;a:5:{s:4:"time";d:1698231981.428817;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:22;a:5:{s:4:"time";d:1698231981.428864;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231981.258371;s:3:"end";d:1698231981.431586;s:6:"memory";i:6813560;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1686:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322373;i:4;a:0:{}i:5;i:4635848;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.32239;i:4;a:0:{}i:5;i:4636600;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322399;i:4;a:0:{}i:5;i:4637352;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322407;i:4;a:0:{}i:5;i:4638104;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322415;i:4;a:0:{}i:5;i:4638856;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322424;i:4;a:0:{}i:5;i:4640248;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322432;i:4;a:0:{}i:5;i:4641000;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231981.322437;i:4;a:0:{}i:5;i:4641376;}}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";}";s:7:"request";s:5574:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryYJgBVOG1blyB6fQK";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:3:"460";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6ad4c911";s:16:"X-Debug-Duration";s:3:"171";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6ad4c911";}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:45:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:17:"/file/upload/file";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:17:"/file/upload/file";s:11:"REMOTE_PORT";s:5:"61538";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryYJgBVOG1blyB6fQK";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:3:"460";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231981.239164;s:12:"REQUEST_TIME";i:1698231981;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:1:{s:4:"file";a:5:{s:4:"name";s:22:"新建文本文档.txt";s:4:"type";s:10:"text/plain";s:8:"tmp_name";s:22:"C:\Windows\php3584.tmp";s:5:"error";i:0;s:4:"size";i:264;}}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6ad4c911";s:3:"url";s:34:"http://cxfoot.com/file/upload/file";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231981.239164;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6813560;s:14:"processingTime";d:0.17304396629333496;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6ae10320.data b/runtime/debug/6538f6ae10320.data deleted file mode 100644 index 12600f1..0000000 --- a/runtime/debug/6538f6ae10320.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16042:"a:1:{s:8:"messages";a:35:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231982.041634;i:4;a:0:{}i:5;i:2497728;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231982.041653;i:4;a:0:{}i:5;i:2498904;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231982.058507;i:4;a:0:{}i:5;i:3637080;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231982.058908;i:4;a:0:{}i:5;i:3639616;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231982.060218;i:4;a:0:{}i:5;i:3704832;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231982.0604;i:4;a:0:{}i:5;i:3702224;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231982.065616;i:4;a:0:{}i:5;i:4188920;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231982.067257;i:4;a:0:{}i:5;i:4313208;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231982.06921;i:4;a:0:{}i:5;i:4385488;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231982.069476;i:4;a:0:{}i:5;i:4386152;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231982.070076;i:4;a:0:{}i:5;i:4410176;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231982.070112;i:4;a:0:{}i:5;i:4416248;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231982.072549;i:4;a:0:{}i:5;i:4643104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231982.072559;i:4;a:0:{}i:5;i:4644728;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231982.077114;i:4;a:0:{}i:5;i:4796968;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.098361;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078552;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231982.098407;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6081360;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.103021;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168704;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.109407;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6506264;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.111146;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6594120;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.118057;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616216;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119396;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622824;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231982.120068;i:4;a:0:{}i:5;i:6618040;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.120847;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6648776;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.126743;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6661528;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127376;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664584;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127941;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671072;}i:57;a:6:{i:0;s:91:"Failed to set unsafe attribute 'phone' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698231982.134864;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6931184;}i:58;a:6:{i:0;s:90:"Failed to set unsafe attribute 'file' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698231982.13488;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6932440;}i:59;a:6:{i:0;s:91:"Failed to set unsafe attribute '_csrf' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698231982.134889;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6933696;}i:60;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698231981203056.txt', `step`=1, `final_at`=1698231982 WHERE `id`=1";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.136753;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6977960;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.167587;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7026248;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.169853;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7050736;}i:69;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698231981203056.txt\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698231982076, 1698231982171, 95, 0, 1698231982)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.172812;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7194936;}i:72;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231982.198458;i:4;a:0:{}i:5;i:7045160;}}}";s:9:"profiling";s:24361:"a:3:{s:6:"memory";i:7348208;s:4:"time";d:0.17775678634643555;s:8:"messages";a:30:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231982.098426;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6082864;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231982.100067;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6132400;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.100096;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.100985;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.103067;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.10369;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.109438;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.109821;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.111185;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.117226;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.118093;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119106;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119428;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119804;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.120873;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.126447;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.126767;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127201;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127401;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127713;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669464;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127962;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.128363;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698231981203056.txt', `step`=1, `final_at`=1698231982 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.136785;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6979072;}i:62;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698231981203056.txt', `step`=1, `final_at`=1698231982 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.166384;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980800;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.167619;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.169363;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.169884;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.170421;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698231981203056.txt\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698231982076, 1698231982171, 95, 0, 1698231982)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.172842;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698231981203056.txt\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698231982076, 1698231982171, 95, 0, 1698231982)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.194359;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:2:"db";s:23197:"a:1:{s:8:"messages";a:28:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.100096;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.100985;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.103067;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.10369;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.109438;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.109821;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.111185;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.117226;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.118093;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119106;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119428;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.119804;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.120873;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.126447;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.126767;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127201;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127401;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127713;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669464;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.127962;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.128363;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698231981203056.txt', `step`=1, `final_at`=1698231982 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.136785;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6979072;}i:62;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698231981203056.txt', `step`=1, `final_at`=1698231982 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.166384;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980800;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.167619;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.169363;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.169884;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231982.170421;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698231981203056.txt\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698231982076, 1698231982171, 95, 0, 1698231982)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.172842;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698231981203056.txt\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698231982076, 1698231982171, 95, 0, 1698231982)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231982.194359;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:5:"event";s:6396:"a:36:{i:0;a:5:{s:4:"time";d:1698231982.060204;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231982.071927;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231982.077455;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231982.077468;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231982.093545;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698231982.10006;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698231982.109872;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698231982.109923;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698231982.111081;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698231982.11985;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698231982.119925;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698231982.119957;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698231982.120785;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698231982.12775;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698231982.127796;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698231982.127829;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698231982.128397;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698231982.128442;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698231982.135247;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:19;a:5:{s:4:"time";d:1698231982.135378;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:20;a:5:{s:4:"time";d:1698231982.135677;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:21;a:5:{s:4:"time";d:1698231982.136551;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:22;a:5:{s:4:"time";d:1698231982.13657;s:4:"name";s:12:"beforeUpdate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:23;a:5:{s:4:"time";d:1698231982.166906;s:4:"name";s:11:"afterUpdate";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:24;a:5:{s:4:"time";d:1698231982.167521;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698231982.171215;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698231982.171945;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698231982.171965;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698231982.194483;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698231982.194529;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:30;a:5:{s:4:"time";d:1698231982.194543;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:31;a:5:{s:4:"time";d:1698231982.194552;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698231982.194566;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698231982.194579;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698231982.198138;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698231982.198181;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231982.022936;s:3:"end";d:1698231982.200999;s:6:"memory";i:7348208;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1689:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072478;i:4;a:0:{}i:5;i:4637512;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072492;i:4;a:0:{}i:5;i:4638264;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072501;i:4;a:0:{}i:5;i:4639016;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072509;i:4;a:0:{}i:5;i:4639768;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072517;i:4;a:0:{}i:5;i:4640520;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072526;i:4;a:0:{}i:5;i:4641912;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072534;i:4;a:0:{}i:5;i:4642664;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231982.072539;i:4;a:0:{}i:5;i:4643040;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:6260:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:3:"204";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6ae10320";s:16:"X-Debug-Duration";s:3:"176";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6ae10320";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:3:{s:12:"Content Type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:3:"Raw";s:204:"phone=11111111111&final_path=%2Fupload%2F0%2F0%2Fupload%2Ffile%2F2023%2F1025%2F1698231981203056.txt&file=&_csrf=wCLdTjlBlWYiO5erd9W3MGqUDvkDInE5oqAxBRnJyL6REbw2bSndIXhU5_MQsMNoH_BLjk8PFH_3khx9LKeciQ%3D%3D";s:17:"Decoded to Params";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698231981203056.txt";s:4:"file";s:0:"";s:5:"_csrf";s:88:"wCLdTjlBlWYiO5erd9W3MGqUDvkDInE5oqAxBRnJyL6REbw2bSndIXhU5_MQsMNoH_BLjk8PFH_3khx9LKeciQ==";}}s:6:"SERVER";a:46:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61538";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:3:"204";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231982.007449;s:12:"REQUEST_TIME";i:1698231982;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698231981203056.txt";s:4:"file";s:0:"";s:5:"_csrf";s:88:"wCLdTjlBlWYiO5erd9W3MGqUDvkDInE5oqAxBRnJyL6REbw2bSndIXhU5_MQsMNoH_BLjk8PFH_3khx9LKeciQ==";}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6ae10320";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231982.007449;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7348208;s:14:"processingTime";d:0.17775678634643555;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6af7916f.data b/runtime/debug/6538f6af7916f.data deleted file mode 100644 index c45b2bb..0000000 --- a/runtime/debug/6538f6af7916f.data +++ /dev/null @@ -1,211 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:18877:"a:1:{s:8:"messages";a:38:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231983.469106;i:4;a:0:{}i:5;i:2494472;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231983.469125;i:4;a:0:{}i:5;i:2495648;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231983.487921;i:4;a:0:{}i:5;i:3633824;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.488448;i:4;a:0:{}i:5;i:3636360;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.489892;i:4;a:0:{}i:5;i:3701576;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231983.490103;i:4;a:0:{}i:5;i:3698968;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231983.495286;i:4;a:0:{}i:5;i:4185664;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.496886;i:4;a:0:{}i:5;i:4309952;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.498315;i:4;a:0:{}i:5;i:4382232;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231983.498494;i:4;a:0:{}i:5;i:4382896;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231983.499172;i:4;a:0:{}i:5;i:4406920;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.499207;i:4;a:0:{}i:5;i:4412992;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231983.501901;i:4;a:0:{}i:5;i:4638104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231983.501912;i:4;a:0:{}i:5;i:4639728;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231983.506483;i:4;a:0:{}i:5;i:4791976;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.524608;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6073560;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231983.524657;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6076368;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.528194;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6163712;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.533224;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6501272;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.534788;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6589128;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.53636;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6611224;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.5373;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617832;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231983.538396;i:4;a:0:{}i:5;i:6612168;}i:45;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231983.540964;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6742656;}i:46;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698231983.544821;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6832920;}i:47;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.553867;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7402000;}i:48;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.555294;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7409656;}i:49;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.555592;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7416016;}i:52;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.561652;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428600;}i:55;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562487;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435312;}i:58;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.563045;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7439000;}i:59;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.565604;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7488472;}i:60;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.565925;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7495248;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.566424;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7498768;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.566591;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7499240;}i:65;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.566889;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7511648;}i:68;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.567345;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7515096;}i:69;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.576514;i:4;a:0:{}i:5;i:7572168;}}}";s:9:"profiling";s:20804:"a:3:{s:6:"memory";i:7904048;s:4:"time";d:0.12795805931091309;s:8:"messages";a:24:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231983.524676;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077872;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231983.526218;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6127408;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.526249;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.527056;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.528228;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.528712;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.533262;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.533658;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.534816;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.535775;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.536387;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.536841;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.537331;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.538045;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.555624;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.561347;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.561682;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562306;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562512;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562898;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.565951;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.566307;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.566914;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.567235;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:2:"db";s:19640:"a:1:{s:8:"messages";a:22:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.526249;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.527056;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.528228;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.528712;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.533262;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.533658;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.534816;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.535775;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.536387;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.536841;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.537331;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.538045;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.555624;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.561347;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.561682;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562306;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562512;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.562898;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.565951;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.566307;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.566914;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.567235;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:5:"event";s:7261:"a:42:{i:0;a:5:{s:4:"time";d:1698231983.489877;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231983.501252;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231983.506844;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231983.506859;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231983.519326;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698231983.526209;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698231983.533712;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698231983.533766;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698231983.534721;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698231983.538238;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698231983.538322;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698231983.538356;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698231983.540957;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:13;a:5:{s:4:"time";d:1698231983.543725;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:14;a:5:{s:4:"time";d:1698231983.544388;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:15;a:5:{s:4:"time";d:1698231983.544408;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:16;a:5:{s:4:"time";d:1698231983.544475;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:17;a:5:{s:4:"time";d:1698231983.544816;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:18;a:5:{s:4:"time";d:1698231983.549415;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698231983.555509;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698231983.562939;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:21;a:5:{s:4:"time";d:1698231983.562987;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:22;a:5:{s:4:"time";d:1698231983.563239;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698231983.565478;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:24;a:5:{s:4:"time";d:1698231983.565491;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:25;a:5:{s:4:"time";d:1698231983.565565;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:26;a:5:{s:4:"time";d:1698231983.565784;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:27;a:5:{s:4:"time";d:1698231983.566344;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:28;a:5:{s:4:"time";d:1698231983.566385;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:29;a:5:{s:4:"time";d:1698231983.566758;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:30;a:5:{s:4:"time";d:1698231983.567269;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:31;a:5:{s:4:"time";d:1698231983.567307;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:32;a:5:{s:4:"time";d:1698231983.573553;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698231983.573709;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698231983.573938;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698231983.573958;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:36;a:5:{s:4:"time";d:1698231983.573971;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:37;a:5:{s:4:"time";d:1698231983.57398;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698231983.573994;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698231983.574005;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698231983.574779;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698231983.575232;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231983.449298;s:3:"end";d:1698231983.577551;s:6:"memory";i:7904048;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1690:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501829;i:4;a:0:{}i:5;i:4632832;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501844;i:4;a:0:{}i:5;i:4633584;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501853;i:4;a:0:{}i:5;i:4634336;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501861;i:4;a:0:{}i:5;i:4635088;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501869;i:4;a:0:{}i:5;i:4635840;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501877;i:4;a:0:{}i:5;i:4637232;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.501886;i:4;a:0:{}i:5;i:4637984;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.50189;i:4;a:0:{}i:5;i:4638360;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5239:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6af7916f";s:16:"X-Debug-Duration";s:3:"126";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6af7916f";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:42:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:19:"/store/report/index";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61538";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231983.432459;s:12:"REQUEST_TIME";i:1698231983;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:609:"a:1:{s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6af7916f";s:3:"url";s:36:"http://cxfoot.com/store/report/index";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231983.432459;s:10:"statusCode";i:200;s:8:"sqlCount";i:11;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7904048;s:14:"processingTime";d:0.12795805931091309;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6afb947c.data b/runtime/debug/6538f6afb947c.data deleted file mode 100644 index e4381e1..0000000 --- a/runtime/debug/6538f6afb947c.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15320:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231983.728044;i:4;a:0:{}i:5;i:2495352;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231983.728061;i:4;a:0:{}i:5;i:2496528;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698231983.74961;i:4;a:0:{}i:5;i:3634704;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.750248;i:4;a:0:{}i:5;i:3637240;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.751575;i:4;a:0:{}i:5;i:3702456;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698231983.751811;i:4;a:0:{}i:5;i:3699848;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231983.758191;i:4;a:0:{}i:5;i:4186544;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.759833;i:4;a:0:{}i:5;i:4310832;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.761336;i:4;a:0:{}i:5;i:4383112;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231983.761514;i:4;a:0:{}i:5;i:4383776;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698231983.762058;i:4;a:0:{}i:5;i:4407800;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.762091;i:4;a:0:{}i:5;i:4413872;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698231983.765017;i:4;a:0:{}i:5;i:4639200;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698231983.765028;i:4;a:0:{}i:5;i:4640824;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698231983.770124;i:4;a:0:{}i:5;i:4793072;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.796763;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074624;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231983.796812;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077432;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.800803;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164776;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.808038;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502336;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.809933;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590192;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.811521;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612288;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812301;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6618896;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698231983.812851;i:4;a:0:{}i:5;i:6613232;}i:45;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.825246;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6994072;}i:48;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.832603;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7033736;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833116;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7042424;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.834153;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7056304;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.835776;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7096760;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.836966;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7115672;}i:63;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698231983769, 1698231983839, 70, 0, 1698231983)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231983.84235;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7272976;}i:66;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698231983.880677;i:4;a:0:{}i:5;i:7139288;}}}";s:9:"profiling";s:25407:"a:3:{s:6:"memory";i:7442424;s:4:"time";d:0.17322921752929688;s:8:"messages";a:28:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231983.796831;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078936;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698231983.798377;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128472;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.798408;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.799259;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.800842;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.801325;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.808086;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.808588;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.809961;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.810919;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.81155;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812063;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812357;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812676;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.825283;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.830937;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.83263;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833057;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833139;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833858;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.834178;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.834749;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.835801;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.836531;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.83699;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.837407;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698231983769, 1698231983839, 70, 0, 1698231983)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231983.8424;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698231983769, 1698231983839, 70, 0, 1698231983)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231983.875514;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:2:"db";s:24243:"a:1:{s:8:"messages";a:26:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.798408;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.799259;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.800842;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.801325;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.808086;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.808588;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.809961;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.810919;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.81155;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812063;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812357;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.812676;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.825283;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.830937;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.83263;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833057;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833139;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.833858;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.834178;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.834749;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.835801;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.836531;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.83699;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698231983.837407;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698231983769, 1698231983839, 70, 0, 1698231983)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231983.8424;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698231983769, 1698231983839, 70, 0, 1698231983)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698231983.875514;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:5:"event";s:4836:"a:27:{i:0;a:5:{s:4:"time";d:1698231983.75156;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698231983.763989;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698231983.770467;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698231983.77048;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698231983.790618;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698231983.798369;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698231983.808643;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698231983.8087;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698231983.809866;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698231983.812716;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698231983.812784;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698231983.812814;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698231983.822019;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:13;a:5:{s:4:"time";d:1698231983.822235;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:14;a:5:{s:4:"time";d:1698231983.82295;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:15;a:5:{s:4:"time";d:1698231983.835723;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698231983.839505;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:17;a:5:{s:4:"time";d:1698231983.841143;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:18;a:5:{s:4:"time";d:1698231983.841163;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:19;a:5:{s:4:"time";d:1698231983.876288;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:20;a:5:{s:4:"time";d:1698231983.876333;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:21;a:5:{s:4:"time";d:1698231983.876346;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:22;a:5:{s:4:"time";d:1698231983.876355;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:23;a:5:{s:4:"time";d:1698231983.876369;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698231983.87638;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:25;a:5:{s:4:"time";d:1698231983.880367;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698231983.88041;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698231983.709684;s:3:"end";d:1698231983.883196;s:6:"memory";i:7442424;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1691:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.764835;i:4;a:0:{}i:5;i:4633608;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.764924;i:4;a:0:{}i:5;i:4634360;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.764957;i:4;a:0:{}i:5;i:4635112;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.764973;i:4;a:0:{}i:5;i:4635864;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.764983;i:4;a:0:{}i:5;i:4636616;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.764992;i:4;a:0:{}i:5;i:4638008;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.765001;i:4;a:0:{}i:5;i:4638760;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698231983.765006;i:4;a:0:{}i:5;i:4639136;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5191:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6afb947c";s:16:"X-Debug-Duration";s:3:"172";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6afb947c";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:35:"/store/report/index?page=1&limit=20";s:12:"QUERY_STRING";s:15:"page=1&limit=20";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:15:"page=1&limit=20";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61576";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698231983.69185;s:12:"REQUEST_TIME";i:1698231983;}s:3:"GET";a:2:{s:4:"page";s:1:"1";s:5:"limit";s:2:"20";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6afb947c";s:3:"url";s:52:"http://cxfoot.com/store/report/index?page=1&limit=20";s:4:"ajax";i:1;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698231983.69185;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7442424;s:14:"processingTime";d:0.17322921752929688;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6d09555c.data b/runtime/debug/6538f6d09555c.data deleted file mode 100644 index 16a9442..0000000 --- a/runtime/debug/6538f6d09555c.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22178:"a:1:{s:8:"messages";a:44:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232016.58388;i:4;a:0:{}i:5;i:2495344;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232016.583909;i:4;a:0:{}i:5;i:2496520;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232016.603601;i:4;a:0:{}i:5;i:3634696;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.604061;i:4;a:0:{}i:5;i:3637232;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.605422;i:4;a:0:{}i:5;i:3702448;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232016.605611;i:4;a:0:{}i:5;i:3699840;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232016.610948;i:4;a:0:{}i:5;i:4186536;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.612615;i:4;a:0:{}i:5;i:4310824;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.614153;i:4;a:0:{}i:5;i:4383104;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232016.614331;i:4;a:0:{}i:5;i:4383768;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232016.614884;i:4;a:0:{}i:5;i:4407792;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.614918;i:4;a:0:{}i:5;i:4413864;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232016.619202;i:4;a:0:{}i:5;i:4639280;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232016.619216;i:4;a:0:{}i:5;i:4640904;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232016.623261;i:4;a:0:{}i:5;i:4793144;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.644672;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074728;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232016.644722;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077536;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.648986;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164880;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.654767;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502440;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.656612;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590296;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.658323;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612392;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.659112;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619000;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232016.659662;i:4;a:0:{}i:5;i:6614088;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.66029;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6644824;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.667792;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6657576;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.668672;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660632;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.669278;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6667160;}i:57;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.669899;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6674256;}i:60;a:6:{i:0;s:83:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232016.673046;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6803912;}i:61;a:6:{i:0;s:75:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\widgets\views\pick-file.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232016.678724;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\widgets\PickFile.php";s:4:"line";i:127;s:8:"function";s:6:"render";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:62:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";s:4:"line";i:54;s:8:"function";s:6:"widget";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6993136;}i:62;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232016.680877;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7001096;}i:63;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.68705;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7485704;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.688286;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7493360;}i:65;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.688617;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7505352;}i:68;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.690082;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517936;}i:71;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.690795;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7523368;}i:74;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.691391;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7527056;}i:75;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.693489;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7576208;}i:76;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.69383;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7582984;}i:79;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.694375;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586504;}i:80;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.694535;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586976;}i:81;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.694838;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7593752;}i:84;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.695291;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7597200;}i:85;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232016.705486;i:4;a:0:{}i:5;i:7630648;}}}";s:9:"profiling";s:25893:"a:3:{s:6:"memory";i:7959000;s:4:"time";d:0.1442430019378662;s:8:"messages";a:34:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232016.644741;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6079040;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232016.64644;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128576;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.64647;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129192;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.647376;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143304;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.649029;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168120;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.649843;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170880;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.654811;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505328;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.655348;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508960;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.656646;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592416;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.657681;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622560;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.658355;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616008;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.658866;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619144;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.659138;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620752;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.659465;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627264;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.660318;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646192;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.667287;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660560;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.667827;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660440;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.668498;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662824;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.668695;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662080;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.66902;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665560;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.6693;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668616;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.66957;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671728;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.669922;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675680;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.670214;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681040;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.688651;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507472;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.689834;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517416;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.690113;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521552;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.690622;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524688;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.69082;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525120;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.691237;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528216;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.693857;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7584736;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.694258;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587792;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.694863;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595504;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.69518;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598544;}}}";s:2:"db";s:24731:"a:1:{s:8:"messages";a:32:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.64647;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129192;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.647376;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143304;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.649029;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168120;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.649843;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170880;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.654811;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505328;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.655348;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508960;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.656646;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592416;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.657681;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622560;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.658355;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616008;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.658866;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619144;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.659138;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620752;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.659465;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627264;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.660318;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646192;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.667287;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660560;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.667827;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660440;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.668498;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662824;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.668695;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662080;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.66902;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665560;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.6693;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668616;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.66957;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671728;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.669922;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675680;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.670214;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681040;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.688651;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507472;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.689834;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517416;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.690113;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521552;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.690622;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524688;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.69082;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525120;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.691237;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528216;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.693857;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7584736;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.694258;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587792;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.694863;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595504;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232016.69518;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598544;}}}";s:5:"event";s:10148:"a:59:{i:0;a:5:{s:4:"time";d:1698232016.605408;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232016.618449;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232016.623629;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232016.623645;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232016.639171;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232016.646432;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232016.655404;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232016.65546;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232016.656528;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232016.65951;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232016.659582;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232016.659615;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232016.660222;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698232016.669065;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698232016.669116;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698232016.669156;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698232016.669607;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698232016.669654;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698232016.669727;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:19;a:5:{s:4:"time";d:1698232016.670249;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698232016.670315;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698232016.673038;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698232016.678008;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:23;a:5:{s:4:"time";d:1698232016.678321;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:24;a:5:{s:4:"time";d:1698232016.678718;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698232016.680249;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:26;a:5:{s:4:"time";d:1698232016.680271;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:27;a:5:{s:4:"time";d:1698232016.680287;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:28;a:5:{s:4:"time";d:1698232016.680325;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:29;a:5:{s:4:"time";d:1698232016.680337;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:30;a:5:{s:4:"time";d:1698232016.680361;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:31;a:5:{s:4:"time";d:1698232016.680478;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:32;a:5:{s:4:"time";d:1698232016.680493;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:33;a:5:{s:4:"time";d:1698232016.680524;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698232016.680871;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698232016.681918;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:36;a:5:{s:4:"time";d:1698232016.688531;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:37;a:5:{s:4:"time";d:1698232016.69128;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:38;a:5:{s:4:"time";d:1698232016.691329;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:39;a:5:{s:4:"time";d:1698232016.69158;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:40;a:5:{s:4:"time";d:1698232016.693362;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:41;a:5:{s:4:"time";d:1698232016.693375;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:42;a:5:{s:4:"time";d:1698232016.69345;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:43;a:5:{s:4:"time";d:1698232016.693678;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:44;a:5:{s:4:"time";d:1698232016.694294;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:45;a:5:{s:4:"time";d:1698232016.694336;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:46;a:5:{s:4:"time";d:1698232016.694709;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:47;a:5:{s:4:"time";d:1698232016.695215;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:48;a:5:{s:4:"time";d:1698232016.695254;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:49;a:5:{s:4:"time";d:1698232016.702528;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:50;a:5:{s:4:"time";d:1698232016.702849;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:51;a:5:{s:4:"time";d:1698232016.703235;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:52;a:5:{s:4:"time";d:1698232016.703262;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:53;a:5:{s:4:"time";d:1698232016.703275;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:54;a:5:{s:4:"time";d:1698232016.703284;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:55;a:5:{s:4:"time";d:1698232016.703299;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:56;a:5:{s:4:"time";d:1698232016.703311;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:57;a:5:{s:4:"time";d:1698232016.704494;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:58;a:5:{s:4:"time";d:1698232016.704659;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232016.561968;s:3:"end";d:1698232016.706607;s:6:"memory";i:7959000;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1688:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619124;i:4;a:0:{}i:5;i:4633688;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619143;i:4;a:0:{}i:5;i:4634440;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619152;i:4;a:0:{}i:5;i:4635192;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.61916;i:4;a:0:{}i:5;i:4635944;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619168;i:4;a:0:{}i:5;i:4636696;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619177;i:4;a:0:{}i:5;i:4638088;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619186;i:4;a:0:{}i:5;i:4638840;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232016.619191;i:4;a:0:{}i:5;i:4639216;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:5310:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6d09555c";s:16:"X-Debug-Duration";s:3:"143";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6d09555c";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61605";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232016.542831;s:12:"REQUEST_TIME";i:1698232016;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:1615:"a:3:{s:52:"/statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";a:9:{s:10:"sourcePath";N;s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:7:"depends";a:1:{i:0;s:33:"app\modules\admin\assets\AppAsset";}s:2:"js";a:1:{i:0;a:1:{i:0;s:51:"statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";}}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6d09555c";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232016.542831;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7959000;s:14:"processingTime";d:0.1442430019378662;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6d4b2a3d.data b/runtime/debug/6538f6d4b2a3d.data deleted file mode 100644 index 3b3a3f5..0000000 --- a/runtime/debug/6538f6d4b2a3d.data +++ /dev/null @@ -1,141 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:9246:"a:1:{s:8:"messages";a:24:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232020.701862;i:4;a:0:{}i:5;i:2496040;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232020.701889;i:4;a:0:{}i:5;i:2497216;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232020.72192;i:4;a:0:{}i:5;i:3635392;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232020.722411;i:4;a:0:{}i:5;i:3637928;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232020.724261;i:4;a:0:{}i:5;i:3703144;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232020.725235;i:4;a:0:{}i:5;i:3700536;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232020.730988;i:4;a:0:{}i:5;i:4187232;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232020.732638;i:4;a:0:{}i:5;i:4311520;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232020.734198;i:4;a:0:{}i:5;i:4383800;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232020.734384;i:4;a:0:{}i:5;i:4384464;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232020.734937;i:4;a:0:{}i:5;i:4408488;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232020.734971;i:4;a:0:{}i:5;i:4414560;}i:20;a:6:{i:0;s:35:"Route requested: 'file/upload/file'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232020.737441;i:4;a:0:{}i:5;i:4641112;}i:21;a:6:{i:0;s:20:"Loading module: file";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232020.737453;i:4;a:0:{}i:5;i:4642736;}i:22;a:6:{i:0;s:30:"Route to run: file/upload/file";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232020.743348;i:4;a:0:{}i:5;i:4873256;}i:23;a:6:{i:0;s:75:"Running action: app\modules\file\controllers\UploadController::actionFile()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232020.74376;i:4;a:0:{}i:5;i:4881472;}i:24;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.839172;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5943480;}i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232020.839217;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5946288;}i:30;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.847643;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6033832;}i:33;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', 'jpg', 'image', 16225, 0)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.857322;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6627784;}i:36;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.884991;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6668608;}i:39;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.886462;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6687520;}i:42;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232020742, 1698232020887, 145, 0, 1698232020)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.889124;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6745816;}i:45;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232020.910413;i:4;a:0:{}i:5;i:6603176;}}}";s:9:"profiling";s:13262:"a:3:{s:6:"memory";i:6906224;s:4:"time";d:0.23073387145996094;s:8:"messages";a:14:{i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232020.839232;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5947792;}i:27;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232020.845343;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997328;}i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.845385;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997944;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.846367;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6012144;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.847678;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6037072;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.84827;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6039832;}i:34;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', 'jpg', 'image', 16225, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.857367;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6628248;}i:35;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', 'jpg', 'image', 16225, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.883776;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6630016;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.885023;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6670728;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.885983;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6693688;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.886489;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6691136;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.886985;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6694272;}i:43;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232020742, 1698232020887, 145, 0, 1698232020)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.88916;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6744176;}i:44;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232020742, 1698232020887, 145, 0, 1698232020)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.905809;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6746576;}}}";s:2:"db";s:11974:"a:1:{s:8:"messages";a:12:{i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.845385;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997944;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.846367;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6012144;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.847678;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6037072;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.84827;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6039832;}i:34;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', 'jpg', 'image', 16225, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.857367;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6628248;}i:35;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', 'jpg', 'image', 16225, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.883776;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6630016;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.885023;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6670728;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.885983;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6693688;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.886489;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6691136;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232020.886985;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6694272;}i:43;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232020742, 1698232020887, 145, 0, 1698232020)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.88916;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6744176;}i:44;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232020742, 1698232020887, 145, 0, 1698232020)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232020.905809;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6746576;}}}";s:5:"event";s:4178:"a:23:{i:0;a:5:{s:4:"time";d:1698232020.72424;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232020.736808;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232020.743717;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232020.743734;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:4;a:5:{s:4:"time";d:1698232020.743745;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:5;a:5:{s:4:"time";d:1698232020.831138;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:6;a:5:{s:4:"time";d:1698232020.84533;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698232020.848819;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:8;a:5:{s:4:"time";d:1698232020.853522;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:9;a:5:{s:4:"time";d:1698232020.853542;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:10;a:5:{s:4:"time";d:1698232020.884297;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:11;a:5:{s:4:"time";d:1698232020.884918;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:12;a:5:{s:4:"time";d:1698232020.887713;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:13;a:5:{s:4:"time";d:1698232020.888896;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:14;a:5:{s:4:"time";d:1698232020.888914;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:15;a:5:{s:4:"time";d:1698232020.905933;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698232020.905982;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:17;a:5:{s:4:"time";d:1698232020.905997;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:18;a:5:{s:4:"time";d:1698232020.906006;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:19;a:5:{s:4:"time";d:1698232020.906021;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:20;a:5:{s:4:"time";d:1698232020.906032;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:21;a:5:{s:4:"time";d:1698232020.910147;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:22;a:5:{s:4:"time";d:1698232020.910198;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232020.682465;s:3:"end";d:1698232020.913372;s:6:"memory";i:6906224;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1684:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.737368;i:4;a:0:{}i:5;i:4635840;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.737384;i:4;a:0:{}i:5;i:4636592;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.737393;i:4;a:0:{}i:5;i:4637344;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.7374;i:4;a:0:{}i:5;i:4638096;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.737408;i:4;a:0:{}i:5;i:4638848;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.737417;i:4;a:0:{}i:5;i:4640240;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.737426;i:4;a:0:{}i:5;i:4640992;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232020.73743;i:4;a:0:{}i:5;i:4641368;}}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";}";s:7:"request";s:5568:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryUM7SY6n10JzuxWqh";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:5:"14755";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6d4b2a3d";s:16:"X-Debug-Duration";s:3:"229";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6d4b2a3d";}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:45:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:17:"/file/upload/file";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:17:"/file/upload/file";s:11:"REMOTE_PORT";s:5:"61605";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryUM7SY6n10JzuxWqh";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:5:"14755";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232020.664087;s:12:"REQUEST_TIME";i:1698232020;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:1:{s:4:"file";a:5:{s:4:"name";s:10:"雪碧.jpg";s:4:"type";s:10:"image/jpeg";s:8:"tmp_name";s:22:"C:\Windows\phpCF83.tmp";s:5:"error";i:0;s:4:"size";i:14571;}}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6d4b2a3d";s:3:"url";s:34:"http://cxfoot.com/file/upload/file";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232020.664087;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6906224;s:14:"processingTime";d:0.23073387145996094;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6d5385c3.data b/runtime/debug/6538f6d5385c3.data deleted file mode 100644 index 036e167..0000000 --- a/runtime/debug/6538f6d5385c3.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16039:"a:1:{s:8:"messages";a:35:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232021.202938;i:4;a:0:{}i:5;i:2497728;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232021.202957;i:4;a:0:{}i:5;i:2498904;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232021.221616;i:4;a:0:{}i:5;i:3637080;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232021.222046;i:4;a:0:{}i:5;i:3639616;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232021.223354;i:4;a:0:{}i:5;i:3704832;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232021.223549;i:4;a:0:{}i:5;i:3702224;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232021.230106;i:4;a:0:{}i:5;i:4188920;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232021.231811;i:4;a:0:{}i:5;i:4313208;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232021.233404;i:4;a:0:{}i:5;i:4385488;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232021.233596;i:4;a:0:{}i:5;i:4386152;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232021.234173;i:4;a:0:{}i:5;i:4410176;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232021.234207;i:4;a:0:{}i:5;i:4416248;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232021.236645;i:4;a:0:{}i:5;i:4643104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232021.236655;i:4;a:0:{}i:5;i:4644728;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232021.242391;i:4;a:0:{}i:5;i:4796968;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.261005;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078552;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232021.261053;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6081360;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.264856;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168704;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.269808;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6506264;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.27137;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6594120;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.273047;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616216;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.274215;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622824;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232021.275225;i:4;a:0:{}i:5;i:6618040;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.275865;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6648776;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.282103;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6661528;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.282789;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664584;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.283317;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671072;}i:57;a:6:{i:0;s:91:"Failed to set unsafe attribute 'phone' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232021.289319;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6931184;}i:58;a:6:{i:0;s:90:"Failed to set unsafe attribute 'file' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232021.289336;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6932440;}i:59;a:6:{i:0;s:91:"Failed to set unsafe attribute '_csrf' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232021.289344;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6933696;}i:60;a:6:{i:0;s:132:"UPDATE `cx_report` SET `initial_path`='/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', `initial_at`=1698232021 WHERE `id`=1";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.290917;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6977552;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.318409;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7026248;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.320175;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7050736;}i:69;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232020477687.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232021240, 1698232021321, 81, 0, 1698232021)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.323339;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7194936;}i:72;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232021.351867;i:4;a:0:{}i:5;i:7045160;}}}";s:9:"profiling";s:24346:"a:3:{s:6:"memory";i:7348208;s:4:"time";d:0.17015695571899414;s:8:"messages";a:30:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232021.261072;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6082864;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232021.262696;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6132400;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.262728;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.263694;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.264892;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.265406;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.26984;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.27019;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.271399;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.272395;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.273078;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.273562;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.274245;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.274893;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.275895;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.281766;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.282131;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.282634;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.28281;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.283087;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669472;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.283338;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.28359;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:132:"UPDATE `cx_report` SET `initial_path`='/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', `initial_at`=1698232021 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.290947;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6978912;}i:62;a:6:{i:0;s:132:"UPDATE `cx_report` SET `initial_path`='/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', `initial_at`=1698232021 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.317104;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980640;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.318441;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.319413;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.320206;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.320868;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232020477687.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232021240, 1698232021321, 81, 0, 1698232021)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.323372;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232020477687.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232021240, 1698232021321, 81, 0, 1698232021)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.347563;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:2:"db";s:23182:"a:1:{s:8:"messages";a:28:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.262728;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.263694;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.264892;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.265406;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.26984;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.27019;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.271399;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.272395;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.273078;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.273562;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.274245;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.274893;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.275895;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.281766;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.282131;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.282634;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.28281;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.283087;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669472;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.283338;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.28359;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:132:"UPDATE `cx_report` SET `initial_path`='/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', `initial_at`=1698232021 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.290947;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6978912;}i:62;a:6:{i:0;s:132:"UPDATE `cx_report` SET `initial_path`='/upload/0/0/upload/file/2023/1025/1698232020477687.jpg', `initial_at`=1698232021 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.317104;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980640;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.318441;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.319413;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.320206;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232021.320868;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232020477687.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232021240, 1698232021321, 81, 0, 1698232021)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.323372;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232020477687.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232021240, 1698232021321, 81, 0, 1698232021)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232021.347563;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:5:"event";s:6397:"a:36:{i:0;a:5:{s:4:"time";d:1698232021.223334;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232021.23598;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232021.242756;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232021.242772;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232021.254796;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232021.262688;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232021.270246;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232021.270298;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232021.271301;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232021.274998;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232021.275081;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232021.275121;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232021.275794;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698232021.283125;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698232021.283172;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698232021.283208;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698232021.283623;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698232021.283667;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698232021.289669;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:19;a:5:{s:4:"time";d:1698232021.289733;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:20;a:5:{s:4:"time";d:1698232021.289765;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:21;a:5:{s:4:"time";d:1698232021.290705;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:22;a:5:{s:4:"time";d:1698232021.290725;s:4:"name";s:12:"beforeUpdate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:23;a:5:{s:4:"time";d:1698232021.317712;s:4:"name";s:11:"afterUpdate";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:24;a:5:{s:4:"time";d:1698232021.318342;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698232021.32167;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698232021.322431;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698232021.322462;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698232021.347735;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698232021.347785;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:30;a:5:{s:4:"time";d:1698232021.347799;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:31;a:5:{s:4:"time";d:1698232021.347809;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698232021.347824;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698232021.347836;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698232021.35153;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698232021.351579;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698232021.18431;s:3:"end";d:1698232021.354792;s:6:"memory";i:7348208;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1688:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236574;i:4;a:0:{}i:5;i:4637512;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236588;i:4;a:0:{}i:5;i:4638264;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236597;i:4;a:0:{}i:5;i:4639016;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236605;i:4;a:0:{}i:5;i:4639768;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236613;i:4;a:0:{}i:5;i:4640520;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236622;i:4;a:0:{}i:5;i:4641912;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.23663;i:4;a:0:{}i:5;i:4642664;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232021.236635;i:4;a:0:{}i:5;i:4643040;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:6260:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:3:"204";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6d5385c3";s:16:"X-Debug-Duration";s:3:"168";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6d5385c3";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:3:{s:12:"Content Type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:3:"Raw";s:204:"phone=11111111111&final_path=%2Fupload%2F0%2F0%2Fupload%2Ffile%2F2023%2F1025%2F1698232020477687.jpg&file=&_csrf=rEwZQ5Ckp5uG9HqV1bz3MV_GaBm9UxE4bf_5BT6RM7n9f3g7xMzv3NybCs2y2YNpKqItbvF-dH44zdR9C_9njg%3D%3D";s:17:"Decoded to Params";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698232020477687.jpg";s:4:"file";s:0:"";s:5:"_csrf";s:88:"rEwZQ5Ckp5uG9HqV1bz3MV_GaBm9UxE4bf_5BT6RM7n9f3g7xMzv3NybCs2y2YNpKqItbvF-dH44zdR9C_9njg==";}}s:6:"SERVER";a:46:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61605";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:3:"204";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232021.168256;s:12:"REQUEST_TIME";i:1698232021;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698232020477687.jpg";s:4:"file";s:0:"";s:5:"_csrf";s:88:"rEwZQ5Ckp5uG9HqV1bz3MV_GaBm9UxE4bf_5BT6RM7n9f3g7xMzv3NybCs2y2YNpKqItbvF-dH44zdR9C_9njg==";}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6d5385c3";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232021.168256;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7348208;s:14:"processingTime";d:0.17015695571899414;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6d6a38a9.data b/runtime/debug/6538f6d6a38a9.data deleted file mode 100644 index e6b0dee..0000000 --- a/runtime/debug/6538f6d6a38a9.data +++ /dev/null @@ -1,211 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:18875:"a:1:{s:8:"messages";a:38:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232022.637725;i:4;a:0:{}i:5;i:2494472;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232022.637747;i:4;a:0:{}i:5;i:2495648;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232022.658275;i:4;a:0:{}i:5;i:3633824;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.658876;i:4;a:0:{}i:5;i:3636360;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.662794;i:4;a:0:{}i:5;i:3701576;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232022.663093;i:4;a:0:{}i:5;i:3698968;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232022.669141;i:4;a:0:{}i:5;i:4185664;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.670805;i:4;a:0:{}i:5;i:4309952;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.672401;i:4;a:0:{}i:5;i:4382232;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232022.672663;i:4;a:0:{}i:5;i:4382896;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232022.673246;i:4;a:0:{}i:5;i:4406920;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.673282;i:4;a:0:{}i:5;i:4412992;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232022.675885;i:4;a:0:{}i:5;i:4638104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232022.675897;i:4;a:0:{}i:5;i:4639728;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232022.68226;i:4;a:0:{}i:5;i:4791976;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.7011;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6073560;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232022.701149;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6076368;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.705196;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6163712;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.714452;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6501272;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.716327;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6589128;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.71789;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6611224;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.71865;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617832;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232022.719148;i:4;a:0:{}i:5;i:6612168;}i:45;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232022.721749;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6742656;}i:46;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232022.724122;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6832920;}i:47;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.733093;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7402000;}i:48;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.733989;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7409656;}i:49;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.734285;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7416016;}i:52;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.735493;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428600;}i:55;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736273;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435312;}i:58;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.736902;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7439000;}i:59;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.739146;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7488472;}i:60;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.739574;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7495248;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.740224;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7498768;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.740387;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7499240;}i:65;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.740681;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7511648;}i:68;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.741138;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7515096;}i:69;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232022.750464;i:4;a:0:{}i:5;i:7572168;}}}";s:9:"profiling";s:20803:"a:3:{s:6:"memory";i:7904048;s:4:"time";d:0.13560199737548828;s:8:"messages";a:24:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232022.701168;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077872;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232022.702788;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6127408;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.702828;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.703944;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.705236;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.705828;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.714503;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.715089;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.716355;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.717276;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.717918;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.718395;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.718675;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.718978;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.734318;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.735259;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.73552;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736039;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736305;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736753;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.739604;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.740102;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.740706;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.741028;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:2:"db";s:19639:"a:1:{s:8:"messages";a:22:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.702828;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.703944;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.705236;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.705828;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.714503;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.715089;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.716355;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.717276;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.717918;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.718395;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.718675;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.718978;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.734318;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.735259;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.73552;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736039;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736305;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.736753;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.739604;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.740102;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.740706;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232022.741028;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:5:"event";s:7256:"a:42:{i:0;a:5:{s:4:"time";d:1698232022.662766;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232022.6752;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232022.682623;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232022.682639;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232022.696386;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232022.702779;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232022.715145;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232022.715204;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232022.716257;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232022.719016;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232022.719082;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232022.719113;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232022.72174;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:13;a:5:{s:4:"time";d:1698232022.723199;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:14;a:5:{s:4:"time";d:1698232022.723688;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:15;a:5:{s:4:"time";d:1698232022.723709;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:16;a:5:{s:4:"time";d:1698232022.723776;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:17;a:5:{s:4:"time";d:1698232022.724116;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:18;a:5:{s:4:"time";d:1698232022.728004;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698232022.734202;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698232022.736795;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:21;a:5:{s:4:"time";d:1698232022.736842;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:22;a:5:{s:4:"time";d:1698232022.737123;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698232022.739003;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:24;a:5:{s:4:"time";d:1698232022.739016;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:25;a:5:{s:4:"time";d:1698232022.739097;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:26;a:5:{s:4:"time";d:1698232022.739405;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:27;a:5:{s:4:"time";d:1698232022.74014;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:28;a:5:{s:4:"time";d:1698232022.740182;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:29;a:5:{s:4:"time";d:1698232022.740551;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:30;a:5:{s:4:"time";d:1698232022.741062;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:31;a:5:{s:4:"time";d:1698232022.7411;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:32;a:5:{s:4:"time";d:1698232022.748366;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698232022.748523;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698232022.748745;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698232022.748766;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:36;a:5:{s:4:"time";d:1698232022.748778;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:37;a:5:{s:4:"time";d:1698232022.748787;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698232022.748802;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698232022.748813;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698232022.749575;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698232022.749717;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232022.615558;s:3:"end";d:1698232022.751453;s:6:"memory";i:7904048;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1690:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.67581;i:4;a:0:{}i:5;i:4632832;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675826;i:4;a:0:{}i:5;i:4633584;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675835;i:4;a:0:{}i:5;i:4634336;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675843;i:4;a:0:{}i:5;i:4635088;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675851;i:4;a:0:{}i:5;i:4635840;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675861;i:4;a:0:{}i:5;i:4637232;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675869;i:4;a:0:{}i:5;i:4637984;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232022.675874;i:4;a:0:{}i:5;i:4638360;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5239:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6d6a38a9";s:16:"X-Debug-Duration";s:3:"135";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6d6a38a9";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:42:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:19:"/store/report/index";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61605";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232022.591412;s:12:"REQUEST_TIME";i:1698232022;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:609:"a:1:{s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6d6a38a9";s:3:"url";s:36:"http://cxfoot.com/store/report/index";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232022.591412;s:10:"statusCode";i:200;s:8:"sqlCount";i:11;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7904048;s:14:"processingTime";d:0.13560199737548828;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6d712fe0.data b/runtime/debug/6538f6d712fe0.data deleted file mode 100644 index 5d45338..0000000 --- a/runtime/debug/6538f6d712fe0.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15316:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232023.0507;i:4;a:0:{}i:5;i:2495352;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232023.05072;i:4;a:0:{}i:5;i:2496528;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232023.06955;i:4;a:0:{}i:5;i:3634704;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232023.06999;i:4;a:0:{}i:5;i:3637240;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232023.071367;i:4;a:0:{}i:5;i:3702456;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232023.071552;i:4;a:0:{}i:5;i:3699848;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232023.076729;i:4;a:0:{}i:5;i:4186544;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232023.079315;i:4;a:0:{}i:5;i:4310832;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232023.081898;i:4;a:0:{}i:5;i:4383112;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232023.082145;i:4;a:0:{}i:5;i:4383776;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232023.082723;i:4;a:0:{}i:5;i:4407800;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232023.082757;i:4;a:0:{}i:5;i:4413872;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232023.085162;i:4;a:0:{}i:5;i:4639200;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232023.085173;i:4;a:0:{}i:5;i:4640824;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232023.088875;i:4;a:0:{}i:5;i:4793072;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.108994;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074624;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232023.109041;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077432;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.116588;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164776;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.121579;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502336;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.123258;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590192;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.124967;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612288;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.125774;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6618896;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232023.12631;i:4;a:0:{}i:5;i:6613232;}i:45;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.138415;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6994072;}i:48;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.147536;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7033736;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.148261;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7042424;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149349;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7056304;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.150603;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7096760;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.151922;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7115672;}i:63;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232023088, 1698232023153, 65, 0, 1698232023)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232023.155398;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7272976;}i:66;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232023.188177;i:4;a:0:{}i:5;i:7139288;}}}";s:9:"profiling";s:25405:"a:3:{s:6:"memory";i:7442424;s:4:"time";d:0.1590728759765625;s:8:"messages";a:28:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232023.109067;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078936;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232023.114256;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128472;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.114305;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.115287;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.116625;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.117146;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.121617;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.1221;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.123287;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.124338;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.124998;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.125525;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.1258;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.126128;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.138453;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.144719;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.147574;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.148201;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.148285;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149038;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149375;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149837;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.150628;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.15145;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.151949;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.152469;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232023088, 1698232023153, 65, 0, 1698232023)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232023.155438;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232023088, 1698232023153, 65, 0, 1698232023)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232023.18365;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:2:"db";s:24242:"a:1:{s:8:"messages";a:26:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.114305;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.115287;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.116625;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.117146;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.121617;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.1221;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.123287;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.124338;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.124998;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.125525;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.1258;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.126128;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.138453;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.144719;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.147574;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.148201;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.148285;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149038;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149375;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.149837;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.150628;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.15145;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.151949;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232023.152469;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232023088, 1698232023153, 65, 0, 1698232023)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232023.155438;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232023088, 1698232023153, 65, 0, 1698232023)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232023.18365;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:5:"event";s:4839:"a:27:{i:0;a:5:{s:4:"time";d:1698232023.071353;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232023.084537;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232023.089221;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232023.089235;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232023.104541;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232023.114243;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232023.122155;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232023.122212;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232023.123189;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232023.126171;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232023.126242;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232023.126274;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232023.135645;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:13;a:5:{s:4:"time";d:1698232023.135751;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:14;a:5:{s:4:"time";d:1698232023.136149;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:15;a:5:{s:4:"time";d:1698232023.150526;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698232023.153219;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:17;a:5:{s:4:"time";d:1698232023.154416;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:18;a:5:{s:4:"time";d:1698232023.154434;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:19;a:5:{s:4:"time";d:1698232023.184231;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:20;a:5:{s:4:"time";d:1698232023.184276;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:21;a:5:{s:4:"time";d:1698232023.18429;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:22;a:5:{s:4:"time";d:1698232023.1843;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:23;a:5:{s:4:"time";d:1698232023.184314;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698232023.184325;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:25;a:5:{s:4:"time";d:1698232023.18786;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698232023.187907;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232023.031378;s:3:"end";d:1698232023.190743;s:6:"memory";i:7442424;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1690:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085091;i:4;a:0:{}i:5;i:4633608;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085106;i:4;a:0:{}i:5;i:4634360;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085114;i:4;a:0:{}i:5;i:4635112;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085122;i:4;a:0:{}i:5;i:4635864;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.08513;i:4;a:0:{}i:5;i:4636616;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085138;i:4;a:0:{}i:5;i:4638008;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085146;i:4;a:0:{}i:5;i:4638760;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232023.085151;i:4;a:0:{}i:5;i:4639136;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5192:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6d712fe0";s:16:"X-Debug-Duration";s:3:"157";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6d712fe0";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:35:"/store/report/index?page=1&limit=20";s:12:"QUERY_STRING";s:15:"page=1&limit=20";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:15:"page=1&limit=20";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61605";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232023.014962;s:12:"REQUEST_TIME";i:1698232023;}s:3:"GET";a:2:{s:4:"page";s:1:"1";s:5:"limit";s:2:"20";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6d712fe0";s:3:"url";s:52:"http://cxfoot.com/store/report/index?page=1&limit=20";s:4:"ajax";i:1;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232023.014962;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7442424;s:14:"processingTime";d:0.1590728759765625;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6e2b635f.data b/runtime/debug/6538f6e2b635f.data deleted file mode 100644 index cd9b187..0000000 --- a/runtime/debug/6538f6e2b635f.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16967:"a:1:{s:8:"messages";a:33:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232034.722893;i:4;a:0:{}i:5;i:2495616;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232034.722915;i:4;a:0:{}i:5;i:2496792;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232034.74564;i:4;a:0:{}i:5;i:4072024;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232034.750284;i:4;a:0:{}i:5;i:4288472;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232034.751051;i:4;a:0:{}i:5;i:4290680;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232034.751274;i:4;a:0:{}i:5;i:4298864;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232034.752897;i:4;a:0:{}i:5;i:4371144;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232034.753094;i:4;a:0:{}i:5;i:4371488;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232034.753674;i:4;a:0:{}i:5;i:4395512;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232034.75371;i:4;a:0:{}i:5;i:4401904;}i:18;a:6:{i:0;s:35:"Route requested: 'api/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232034.756088;i:4;a:0:{}i:5;i:4625456;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232034.756098;i:4;a:0:{}i:5;i:4627080;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.778584;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6051344;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232034.778627;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6053776;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.783257;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6140088;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.788668;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476656;}i:32;a:6:{i:0;s:30:"Route to run: api/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232034.805418;i:4;a:0:{}i:5;i:6705632;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.814193;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6982368;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.814908;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6990624;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.816475;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004472;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.817535;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008352;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.824152;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7030448;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.824926;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038432;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698232034.830749;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7278416;}i:52;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232034.832592;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:56;s:8:"function";s:6:"__call";s:5:"class";s:20:"yii\redis\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7364760;}i:53;a:6:{i:0;s:75:"Running action: app\modules\api\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232034.832949;i:4;a:0:{}i:5;i:7360840;}i:54;a:6:{i:0;s:85:"Failed to set unsafe attribute 'access_token' in 'app\modules\api\models\ReportForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232034.836708;i:4;a:1:{i:0;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:7472624;}i:55;a:6:{i:0;s:79:"Failed to set unsafe attribute 'X-Csrf' in 'app\modules\api\models\ReportForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232034.836728;i:4;a:1:{i:0;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:7473864;}i:56;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.837763;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7504744;}i:59;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.839265;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7542000;}i:62;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.840162;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7588400;}i:65;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.841564;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612944;}i:68;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232034759, 1698232034842, 83, 0, 1698232034)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232034.844862;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7771792;}}}";s:9:"profiling";s:25701:"a:3:{s:6:"memory";i:8461104;s:4:"time";d:0.17357420921325684;s:8:"messages";a:30:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232034.778645;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054904;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232034.78051;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6104064;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.780544;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6104304;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.781423;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6120136;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.783304;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142952;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.784039;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6145336;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.788704;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477904;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.789191;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484576;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.81423;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983936;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.814814;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987624;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.814941;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992744;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.81592;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005008;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.81651;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008088;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.817332;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011224;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.817563;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010472;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.823537;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040616;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.824182;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034064;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.82467;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037200;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.824951;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040184;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.825278;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046648;}i:57;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.837792;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7506576;}i:58;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.838229;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7508288;}i:60;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.839289;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7543984;}i:61;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.839552;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7546920;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.840186;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7590520;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.841039;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613480;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.841592;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7616560;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.842078;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7619696;}i:69;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232034759, 1698232034842, 83, 0, 1698232034)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232034.844907;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7770152;}i:70;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232034759, 1698232034842, 83, 0, 1698232034)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232034.871139;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7772680;}}}";s:2:"db";s:24898:"a:1:{s:8:"messages";a:28:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.780544;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6104304;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.781423;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6120136;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.783304;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142952;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.784039;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6145336;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.788704;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477904;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.789191;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484576;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.81423;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983936;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.814814;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987624;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.814941;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992744;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.81592;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005008;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.81651;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008088;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.817332;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011224;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.817563;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010472;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.823537;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040616;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.824182;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034064;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.82467;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037200;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.824951;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040184;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.825278;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046648;}i:57;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.837792;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7506576;}i:58;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.838229;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7508288;}i:60;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.839289;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7543984;}i:61;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.839552;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7546920;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.840186;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7590520;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.841039;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613480;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.841592;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7616560;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232034.842078;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7619696;}i:69;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232034759, 1698232034842, 83, 0, 1698232034)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232034.844907;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7770152;}i:70;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232034759, 1698232034842, 83, 0, 1698232034)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232034.871139;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7772680;}}}";s:5:"event";s:5668:"a:32:{i:0;a:5:{s:4:"time";d:1698232034.75126;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232034.755476;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232034.774177;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698232034.780501;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698232034.789241;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698232034.789303;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698232034.80578;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698232034.805796;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698232034.812565;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232034.814858;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698232034.817426;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698232034.817465;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698232034.825319;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698232034.825389;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698232034.826147;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698232034.830788;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698232034.832927;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:44:"app\modules\api\controllers\ReportController";}i:17;a:5:{s:4:"time";d:1698232034.837077;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:33:"app\modules\api\models\ReportForm";}i:18;a:5:{s:4:"time";d:1698232034.837169;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:33:"app\modules\api\models\ReportForm";}i:19;a:5:{s:4:"time";d:1698232034.837599;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698232034.840113;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:21;a:5:{s:4:"time";d:1698232034.842769;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:22;a:5:{s:4:"time";d:1698232034.843955;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698232034.843975;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698232034.871723;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698232034.871768;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:44:"app\modules\api\controllers\ReportController";}i:26;a:5:{s:4:"time";d:1698232034.871781;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:27;a:5:{s:4:"time";d:1698232034.871791;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:28;a:5:{s:4:"time";d:1698232034.871805;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:29;a:5:{s:4:"time";d:1698232034.871816;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:30;a:5:{s:4:"time";d:1698232034.87472;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:31;a:5:{s:4:"time";d:1698232034.874799;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698232034.704146;s:3:"end";d:1698232034.87803;s:6:"memory";i:8461104;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1686:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756015;i:4;a:0:{}i:5;i:4619864;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.75603;i:4;a:0:{}i:5;i:4620616;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756039;i:4;a:0:{}i:5;i:4621368;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756047;i:4;a:0:{}i:5;i:4622120;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756055;i:4;a:0:{}i:5;i:4622872;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756064;i:4;a:0:{}i:5;i:4623624;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756072;i:4;a:0:{}i:5;i:4624376;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232034.756077;i:4;a:0:{}i:5;i:4625392;}}s:5:"route";s:16:"api/report/index";s:6:"action";s:59:"app\modules\api\controllers\ReportController::actionIndex()";}";s:7:"request";s:4885:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:7:{s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=36b549be6d1949b21388ae74373c49177dcf43c74d333ee5f06944c979055f72a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22x4tr1k0wVSbBMQTWcUqwiybRJDyMyZ3i%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6e2b635f";s:16:"X-Debug-Duration";s:3:"172";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6e2b635f";s:10:"Set-Cookie";s:204:"_csrf=56f1810e3015c2aad479a2fbee75d69902f1ead40f4ed413ba16e20b24d80ecaa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Klj0yV5EB09KayJGNTF6cg3D2LhhXYS5%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:16:"api/report/index";s:6:"action";s:59:"app\modules\api\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:41:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:133:"/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:17:"/api/report/index";s:11:"REMOTE_PORT";s:5:"61629";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=36b549be6d1949b21388ae74373c49177dcf43c74d333ee5f06944c979055f72a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22x4tr1k0wVSbBMQTWcUqwiybRJDyMyZ3i%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232034.687975;s:12:"REQUEST_TIME";i:1698232034;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:0:{}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"36b549be6d1949b21388ae74373c49177dcf43c74d333ee5f06944c979055f72a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"x4tr1k0wVSbBMQTWcUqwiybRJDyMyZ3i"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6e2b635f";s:3:"url";s:150:"http://cxfoot.com/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232034.687975;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8461104;s:14:"processingTime";d:0.17357420921325684;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6f8518f2.data b/runtime/debug/6538f6f8518f2.data deleted file mode 100644 index 582d8e3..0000000 --- a/runtime/debug/6538f6f8518f2.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22176:"a:1:{s:8:"messages";a:44:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232056.30705;i:4;a:0:{}i:5;i:2495344;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232056.307075;i:4;a:0:{}i:5;i:2496520;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232056.325835;i:4;a:0:{}i:5;i:3634696;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.326562;i:4;a:0:{}i:5;i:3637232;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.327937;i:4;a:0:{}i:5;i:3702448;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232056.328137;i:4;a:0:{}i:5;i:3699840;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232056.333368;i:4;a:0:{}i:5;i:4186536;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.33499;i:4;a:0:{}i:5;i:4310824;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.336488;i:4;a:0:{}i:5;i:4383104;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232056.336666;i:4;a:0:{}i:5;i:4383768;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232056.337223;i:4;a:0:{}i:5;i:4407792;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.337258;i:4;a:0:{}i:5;i:4413864;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232056.342809;i:4;a:0:{}i:5;i:4639280;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232056.342823;i:4;a:0:{}i:5;i:4640904;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232056.346735;i:4;a:0:{}i:5;i:4793144;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.366556;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074728;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232056.366604;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077536;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.370528;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164880;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.377215;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502440;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.379093;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590296;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.380659;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612392;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.38143;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619000;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232056.381972;i:4;a:0:{}i:5;i:6614088;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.382472;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6644824;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.388579;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6657576;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.39018;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660632;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390953;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6667160;}i:57;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391606;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6674256;}i:60;a:6:{i:0;s:83:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232056.395484;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6803912;}i:61;a:6:{i:0;s:75:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\widgets\views\pick-file.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232056.403345;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\widgets\PickFile.php";s:4:"line";i:127;s:8:"function";s:6:"render";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:62:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";s:4:"line";i:54;s:8:"function";s:6:"widget";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6993136;}i:62;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232056.406053;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7001096;}i:63;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.41259;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7485704;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.413853;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7493360;}i:65;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.414127;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7505352;}i:68;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415236;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517936;}i:71;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415902;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7523368;}i:74;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.41642;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7527056;}i:75;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.419025;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7576208;}i:76;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.419415;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7582984;}i:79;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.420057;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586504;}i:80;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.420262;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586976;}i:81;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.420611;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7593752;}i:84;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.421125;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7597200;}i:85;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232056.432072;i:4;a:0:{}i:5;i:7630648;}}}";s:9:"profiling";s:25896:"a:3:{s:6:"memory";i:7959000;s:4:"time";d:0.14617490768432617;s:8:"messages";a:34:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232056.366624;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6079040;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232056.368302;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128576;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.368333;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129192;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.369218;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143304;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.370565;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168120;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.371104;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170880;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.377266;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505328;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.37787;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508960;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.379124;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592416;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.380081;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622560;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.380687;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616008;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.3812;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619144;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.381454;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620752;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.381783;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627264;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.382497;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646192;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.388237;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660560;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.388609;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660440;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.389977;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662824;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390206;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662080;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390689;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665568;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390976;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668616;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391298;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671728;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391629;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675680;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391968;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681040;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.41416;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507472;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.41499;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517416;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415264;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521552;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415742;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524688;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415926;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525120;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.416286;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528216;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.419444;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7584736;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.419912;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587792;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.420636;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595504;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.42098;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598544;}}}";s:2:"db";s:24732:"a:1:{s:8:"messages";a:32:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.368333;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129192;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.369218;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143304;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.370565;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168120;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.371104;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170880;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.377266;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505328;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.37787;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508960;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.379124;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592416;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.380081;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622560;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.380687;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616008;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.3812;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619144;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.381454;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620752;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.381783;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627264;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.382497;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646192;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.388237;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660560;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.388609;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660440;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.389977;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662824;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390206;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662080;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390689;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665568;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.390976;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668616;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391298;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671728;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391629;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675680;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.391968;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681040;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.41416;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507472;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.41499;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517416;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415264;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521552;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415742;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524688;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.415926;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525120;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.416286;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528216;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.419444;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7584736;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.419912;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587792;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.420636;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595504;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232056.42098;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598544;}}}";s:5:"event";s:10148:"a:59:{i:0;a:5:{s:4:"time";d:1698232056.327922;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232056.33942;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232056.347094;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232056.347108;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232056.362029;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232056.368294;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232056.37793;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232056.377991;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232056.379012;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232056.381822;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232056.381889;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232056.381919;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232056.382416;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698232056.390733;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698232056.390792;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698232056.390831;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698232056.391338;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698232056.391386;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698232056.391429;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:19;a:5:{s:4:"time";d:1698232056.392006;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698232056.392076;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698232056.395475;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698232056.402163;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:23;a:5:{s:4:"time";d:1698232056.402863;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:24;a:5:{s:4:"time";d:1698232056.403337;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698232056.4052;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:26;a:5:{s:4:"time";d:1698232056.405222;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:27;a:5:{s:4:"time";d:1698232056.405237;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:28;a:5:{s:4:"time";d:1698232056.405274;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:29;a:5:{s:4:"time";d:1698232056.405286;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:30;a:5:{s:4:"time";d:1698232056.405309;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:31;a:5:{s:4:"time";d:1698232056.405376;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:32;a:5:{s:4:"time";d:1698232056.405389;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:33;a:5:{s:4:"time";d:1698232056.405423;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698232056.406047;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698232056.40782;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:36;a:5:{s:4:"time";d:1698232056.414046;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:37;a:5:{s:4:"time";d:1698232056.416323;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:38;a:5:{s:4:"time";d:1698232056.416366;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:39;a:5:{s:4:"time";d:1698232056.416589;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:40;a:5:{s:4:"time";d:1698232056.418893;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:41;a:5:{s:4:"time";d:1698232056.418907;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:42;a:5:{s:4:"time";d:1698232056.418982;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:43;a:5:{s:4:"time";d:1698232056.419259;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:44;a:5:{s:4:"time";d:1698232056.419967;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:45;a:5:{s:4:"time";d:1698232056.420009;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:46;a:5:{s:4:"time";d:1698232056.420472;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:47;a:5:{s:4:"time";d:1698232056.421045;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:48;a:5:{s:4:"time";d:1698232056.421086;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:49;a:5:{s:4:"time";d:1698232056.429046;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:50;a:5:{s:4:"time";d:1698232056.429314;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:51;a:5:{s:4:"time";d:1698232056.429537;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:52;a:5:{s:4:"time";d:1698232056.429562;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:53;a:5:{s:4:"time";d:1698232056.429574;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:54;a:5:{s:4:"time";d:1698232056.429583;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:55;a:5:{s:4:"time";d:1698232056.429597;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:56;a:5:{s:4:"time";d:1698232056.429608;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:57;a:5:{s:4:"time";d:1698232056.430394;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:58;a:5:{s:4:"time";d:1698232056.430768;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232056.286608;s:3:"end";d:1698232056.433176;s:6:"memory";i:7959000;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1689:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342721;i:4;a:0:{}i:5;i:4633688;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342745;i:4;a:0:{}i:5;i:4634440;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342754;i:4;a:0:{}i:5;i:4635192;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342763;i:4;a:0:{}i:5;i:4635944;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342771;i:4;a:0:{}i:5;i:4636696;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342782;i:4;a:0:{}i:5;i:4638088;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342791;i:4;a:0:{}i:5;i:4638840;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232056.342797;i:4;a:0:{}i:5;i:4639216;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:5310:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6f8518f2";s:16:"X-Debug-Duration";s:3:"145";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6f8518f2";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61604";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232056.266961;s:12:"REQUEST_TIME";i:1698232056;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:1615:"a:3:{s:52:"/statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";a:9:{s:10:"sourcePath";N;s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:7:"depends";a:1:{i:0;s:33:"app\modules\admin\assets\AppAsset";}s:2:"js";a:1:{i:0;a:1:{i:0;s:51:"statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";}}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6f8518f2";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232056.266961;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7959000;s:14:"processingTime";d:0.14617490768432617;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6fba3afb.data b/runtime/debug/6538f6fba3afb.data deleted file mode 100644 index d45e965..0000000 --- a/runtime/debug/6538f6fba3afb.data +++ /dev/null @@ -1,141 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:9248:"a:1:{s:8:"messages";a:24:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232059.637871;i:4;a:0:{}i:5;i:2496040;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232059.637892;i:4;a:0:{}i:5;i:2497216;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232059.660177;i:4;a:0:{}i:5;i:3635392;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232059.660636;i:4;a:0:{}i:5;i:3637928;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232059.662399;i:4;a:0:{}i:5;i:3703144;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232059.662992;i:4;a:0:{}i:5;i:3700536;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232059.669723;i:4;a:0:{}i:5;i:4187232;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232059.671388;i:4;a:0:{}i:5;i:4311520;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232059.672915;i:4;a:0:{}i:5;i:4383800;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232059.673243;i:4;a:0:{}i:5;i:4384464;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232059.674115;i:4;a:0:{}i:5;i:4408488;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232059.674154;i:4;a:0:{}i:5;i:4414560;}i:20;a:6:{i:0;s:35:"Route requested: 'file/upload/file'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232059.676803;i:4;a:0:{}i:5;i:4641112;}i:21;a:6:{i:0;s:20:"Loading module: file";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232059.676814;i:4;a:0:{}i:5;i:4642736;}i:22;a:6:{i:0;s:30:"Route to run: file/upload/file";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232059.683731;i:4;a:0:{}i:5;i:4873256;}i:23;a:6:{i:0;s:75:"Running action: app\modules\file\controllers\UploadController::actionFile()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232059.684336;i:4;a:0:{}i:5;i:4881472;}i:24;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.789572;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5943480;}i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232059.789616;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5946288;}i:30;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.793986;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6033832;}i:33;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', 'jpg', 'image', 16225, 0)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.805895;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6627784;}i:36;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.838252;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6668608;}i:39;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.839697;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6687520;}i:42;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232059682, 1698232059841, 159, 0, 1698232059)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.842997;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6745816;}i:45;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232059.861299;i:4;a:0:{}i:5;i:6603176;}}}";s:9:"profiling";s:13261:"a:3:{s:6:"memory";i:6906224;s:4:"time";d:0.2553830146789551;s:8:"messages";a:14:{i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232059.789633;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5947792;}i:27;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232059.791259;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997328;}i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.791288;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997944;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.792208;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6012144;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.794029;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6037072;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.794646;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6039832;}i:34;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', 'jpg', 'image', 16225, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.805935;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6628248;}i:35;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', 'jpg', 'image', 16225, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.836508;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6630016;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.838283;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6670728;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.839245;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6693688;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.839723;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6691136;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.840211;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6694272;}i:43;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232059682, 1698232059841, 159, 0, 1698232059)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.84303;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6744176;}i:44;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232059682, 1698232059841, 159, 0, 1698232059)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.85644;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6746576;}}}";s:2:"db";s:11974:"a:1:{s:8:"messages";a:12:{i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.791288;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997944;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.792208;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6012144;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.794029;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6037072;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.794646;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6039832;}i:34;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', 'jpg', 'image', 16225, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.805935;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6628248;}i:35;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', 'jpg', 'image', 16225, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.836508;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6630016;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.838283;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6670728;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.839245;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6693688;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.839723;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6691136;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232059.840211;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6694272;}i:43;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232059682, 1698232059841, 159, 0, 1698232059)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.84303;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6744176;}i:44;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232059682, 1698232059841, 159, 0, 1698232059)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232059.85644;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6746576;}}}";s:5:"event";s:4179:"a:23:{i:0;a:5:{s:4:"time";d:1698232059.662382;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232059.67617;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232059.684289;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232059.684308;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:4;a:5:{s:4:"time";d:1698232059.684321;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:5;a:5:{s:4:"time";d:1698232059.777868;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:6;a:5:{s:4:"time";d:1698232059.791249;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698232059.795561;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:8;a:5:{s:4:"time";d:1698232059.801287;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:9;a:5:{s:4:"time";d:1698232059.801309;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:10;a:5:{s:4:"time";d:1698232059.837228;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:11;a:5:{s:4:"time";d:1698232059.838189;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:12;a:5:{s:4:"time";d:1698232059.841253;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:13;a:5:{s:4:"time";d:1698232059.842768;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:14;a:5:{s:4:"time";d:1698232059.842786;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:15;a:5:{s:4:"time";d:1698232059.856569;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698232059.856638;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:17;a:5:{s:4:"time";d:1698232059.856653;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:18;a:5:{s:4:"time";d:1698232059.856663;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:19;a:5:{s:4:"time";d:1698232059.856678;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:20;a:5:{s:4:"time";d:1698232059.856689;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:21;a:5:{s:4:"time";d:1698232059.861043;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:22;a:5:{s:4:"time";d:1698232059.861091;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232059.608706;s:3:"end";d:1698232059.864305;s:6:"memory";i:6906224;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1687:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676729;i:4;a:0:{}i:5;i:4635840;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676745;i:4;a:0:{}i:5;i:4636592;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676754;i:4;a:0:{}i:5;i:4637344;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676761;i:4;a:0:{}i:5;i:4638096;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676769;i:4;a:0:{}i:5;i:4638848;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676779;i:4;a:0:{}i:5;i:4640240;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676787;i:4;a:0:{}i:5;i:4640992;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232059.676792;i:4;a:0:{}i:5;i:4641368;}}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";}";s:7:"request";s:5568:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryIanVBBXdHGP3ZNHB";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:5:"14755";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6fba3afb";s:16:"X-Debug-Duration";s:3:"253";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6fba3afb";}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:45:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:17:"/file/upload/file";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:17:"/file/upload/file";s:11:"REMOTE_PORT";s:5:"61604";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryIanVBBXdHGP3ZNHB";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:5:"14755";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232059.568561;s:12:"REQUEST_TIME";i:1698232059;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:1:{s:4:"file";a:5:{s:4:"name";s:10:"雪碧.jpg";s:4:"type";s:10:"image/jpeg";s:8:"tmp_name";s:22:"C:\Windows\php6776.tmp";s:5:"error";i:0;s:4:"size";i:14571;}}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6fba3afb";s:3:"url";s:34:"http://cxfoot.com/file/upload/file";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232059.568561;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6906224;s:14:"processingTime";d:0.2553830146789551;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6fc2c920.data b/runtime/debug/6538f6fc2c920.data deleted file mode 100644 index 4a10451..0000000 --- a/runtime/debug/6538f6fc2c920.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16027:"a:1:{s:8:"messages";a:35:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232060.155729;i:4;a:0:{}i:5;i:2497728;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232060.155747;i:4;a:0:{}i:5;i:2498904;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232060.174211;i:4;a:0:{}i:5;i:3637080;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232060.174658;i:4;a:0:{}i:5;i:3639616;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232060.17594;i:4;a:0:{}i:5;i:3704832;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232060.17613;i:4;a:0:{}i:5;i:3702224;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232060.18184;i:4;a:0:{}i:5;i:4188920;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232060.183492;i:4;a:0:{}i:5;i:4313208;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232060.185;i:4;a:0:{}i:5;i:4385488;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232060.18521;i:4;a:0:{}i:5;i:4386152;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232060.185772;i:4;a:0:{}i:5;i:4410176;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232060.185807;i:4;a:0:{}i:5;i:4416248;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232060.188522;i:4;a:0:{}i:5;i:4643104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232060.188535;i:4;a:0:{}i:5;i:4644728;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232060.193168;i:4;a:0:{}i:5;i:4796968;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.215751;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078552;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232060.215802;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6081360;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.219722;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168704;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.226129;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6506264;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.227934;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6594120;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.229793;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616216;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.231982;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622824;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232060.232773;i:4;a:0:{}i:5;i:6618040;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.233823;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6648776;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.235202;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6661528;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.23605;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664584;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236594;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671072;}i:57;a:6:{i:0;s:91:"Failed to set unsafe attribute 'phone' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232060.243252;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6931184;}i:58;a:6:{i:0;s:90:"Failed to set unsafe attribute 'file' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232060.243269;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6932440;}i:59;a:6:{i:0;s:91:"Failed to set unsafe attribute '_csrf' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232060.243278;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6933696;}i:60;a:6:{i:0;s:128:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', `final_at`=1698232060 WHERE `id`=1";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.244641;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6977552;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.26828;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7026248;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.269792;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7050736;}i:69;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232059808081.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232060192, 1698232060270, 78, 0, 1698232060)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.272549;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7194936;}i:72;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232060.293845;i:4;a:0:{}i:5;i:7045160;}}}";s:9:"profiling";s:24341:"a:3:{s:6:"memory";i:7348208;s:4:"time";d:0.15855717658996582;s:8:"messages";a:30:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232060.215822;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6082864;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232060.217597;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6132400;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.217671;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.218497;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.219759;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.220326;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.226172;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.226592;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.227963;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.228886;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.229826;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.231596;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.232018;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.232426;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.233853;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.234893;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.235228;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.23589;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236072;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236355;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669480;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236615;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236871;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:128:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', `final_at`=1698232060 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.244668;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6978912;}i:62;a:6:{i:0;s:128:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', `final_at`=1698232060 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.267081;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980640;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.268311;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.269302;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.269819;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.270309;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232059808081.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232060192, 1698232060270, 78, 0, 1698232060)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.272579;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232059808081.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232060192, 1698232060270, 78, 0, 1698232060)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.289801;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:2:"db";s:23177:"a:1:{s:8:"messages";a:28:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.217671;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.218497;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.219759;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.220326;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.226172;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.226592;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.227963;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.228886;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.229826;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.231596;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.232018;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.232426;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.233853;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.234893;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.235228;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.23589;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236072;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236355;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669480;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236615;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.236871;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:128:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', `final_at`=1698232060 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.244668;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6978912;}i:62;a:6:{i:0;s:128:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232059808081.jpg', `final_at`=1698232060 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.267081;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:72;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980640;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.268311;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.269302;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.269819;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232060.270309;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232059808081.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232060192, 1698232060270, 78, 0, 1698232060)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.272579;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232059808081.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232060192, 1698232060270, 78, 0, 1698232060)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232060.289801;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:5:"event";s:6395:"a:36:{i:0;a:5:{s:4:"time";d:1698232060.175925;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232060.187548;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232060.193518;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232060.193532;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232060.20932;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232060.217589;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232060.226654;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232060.226712;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232060.227865;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232060.232474;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232060.232561;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232060.232595;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232060.233747;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698232060.236399;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698232060.236448;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698232060.236484;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698232060.236905;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698232060.236948;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698232060.2436;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:19;a:5:{s:4:"time";d:1698232060.243664;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:20;a:5:{s:4:"time";d:1698232060.24369;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:21;a:5:{s:4:"time";d:1698232060.244449;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:22;a:5:{s:4:"time";d:1698232060.244467;s:4:"name";s:12:"beforeUpdate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:23;a:5:{s:4:"time";d:1698232060.267612;s:4:"name";s:11:"afterUpdate";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:24;a:5:{s:4:"time";d:1698232060.268213;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698232060.270977;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698232060.271697;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698232060.271715;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698232060.289926;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698232060.289972;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:30;a:5:{s:4:"time";d:1698232060.289986;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:31;a:5:{s:4:"time";d:1698232060.289995;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698232060.290009;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698232060.290021;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698232060.293527;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698232060.29357;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698232060.137503;s:3:"end";d:1698232060.29654;s:6:"memory";i:7348208;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1687:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.188446;i:4;a:0:{}i:5;i:4637512;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.188463;i:4;a:0:{}i:5;i:4638264;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.188472;i:4;a:0:{}i:5;i:4639016;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.18848;i:4;a:0:{}i:5;i:4639768;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.188488;i:4;a:0:{}i:5;i:4640520;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.188497;i:4;a:0:{}i:5;i:4641912;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.188505;i:4;a:0:{}i:5;i:4642664;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232060.18851;i:4;a:0:{}i:5;i:4643040;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:6260:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:3:"204";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6fc2c920";s:16:"X-Debug-Duration";s:3:"157";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6fc2c920";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:3:{s:12:"Content Type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:3:"Raw";s:204:"phone=11111111111&final_path=%2Fupload%2F0%2F0%2Fupload%2Ffile%2F2023%2F1025%2F1698232059808081.jpg&file=&_csrf=fK1yHVpKbrjeVYj6IxzzgSEgKk_gh89HL0daB3fJy-ctnhNlDiIm_4Q6-KJEeYfZVERvOKyqqgF6dXd_Qqef0A%3D%3D";s:17:"Decoded to Params";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698232059808081.jpg";s:4:"file";s:0:"";s:5:"_csrf";s:88:"fK1yHVpKbrjeVYj6IxzzgSEgKk_gh89HL0daB3fJy-ctnhNlDiIm_4Q6-KJEeYfZVERvOKyqqgF6dXd_Qqef0A==";}}s:6:"SERVER";a:46:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61604";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:3:"204";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232060.122011;s:12:"REQUEST_TIME";i:1698232060;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698232059808081.jpg";s:4:"file";s:0:"";s:5:"_csrf";s:88:"fK1yHVpKbrjeVYj6IxzzgSEgKk_gh89HL0daB3fJy-ctnhNlDiIm_4Q6-KJEeYfZVERvOKyqqgF6dXd_Qqef0A==";}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6fc2c920";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232060.122011;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7348208;s:14:"processingTime";d:0.15855717658996582;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6fd92e97.data b/runtime/debug/6538f6fd92e97.data deleted file mode 100644 index 95691a3..0000000 --- a/runtime/debug/6538f6fd92e97.data +++ /dev/null @@ -1,211 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:18879:"a:1:{s:8:"messages";a:38:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232061.572187;i:4;a:0:{}i:5;i:2494472;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232061.572208;i:4;a:0:{}i:5;i:2495648;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232061.593474;i:4;a:0:{}i:5;i:3633824;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.593917;i:4;a:0:{}i:5;i:3636360;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.595231;i:4;a:0:{}i:5;i:3701576;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232061.595417;i:4;a:0:{}i:5;i:3698968;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232061.601016;i:4;a:0:{}i:5;i:4185664;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.602691;i:4;a:0:{}i:5;i:4309952;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.604201;i:4;a:0:{}i:5;i:4382232;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232061.604393;i:4;a:0:{}i:5;i:4382896;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232061.604949;i:4;a:0:{}i:5;i:4406920;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.604983;i:4;a:0:{}i:5;i:4412992;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232061.607576;i:4;a:0:{}i:5;i:4638104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232061.607588;i:4;a:0:{}i:5;i:4639728;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232061.611268;i:4;a:0:{}i:5;i:4791976;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.628517;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6073560;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232061.628564;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6076368;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.632511;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6163712;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.638386;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6501272;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.640083;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6589128;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.646722;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6611224;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647522;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617832;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232061.648054;i:4;a:0:{}i:5;i:6612168;}i:45;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232061.651411;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6742656;}i:46;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232061.655616;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6832920;}i:47;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.664428;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7402000;}i:48;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.665848;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7409656;}i:49;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.666215;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7416016;}i:52;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.667917;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428600;}i:55;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.668868;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435312;}i:58;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.669483;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7439000;}i:59;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.672137;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7488472;}i:60;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.67249;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7495248;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.673205;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7498768;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.673367;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7499240;}i:65;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.673661;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7511648;}i:68;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.674124;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7515096;}i:69;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.683246;i:4;a:0:{}i:5;i:7572168;}}}";s:9:"profiling";s:20801:"a:3:{s:6:"memory";i:7904048;s:4:"time";d:0.13411378860473633;s:8:"messages";a:24:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232061.628584;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077872;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232061.63022;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6127408;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.630249;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.631066;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.632552;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.63342;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.638435;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.638905;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.640112;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.646099;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.646754;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647275;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647547;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647871;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.66625;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.667608;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.667955;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.668684;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.668893;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.669323;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.672517;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.673088;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.673685;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.674014;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:2:"db";s:19638:"a:1:{s:8:"messages";a:22:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.630249;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.631066;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.632552;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.63342;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.638435;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.638905;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.640112;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.646099;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.646754;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647275;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647547;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.647871;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.66625;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.667608;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.667955;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.668684;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.668893;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.669323;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.672517;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.673088;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.673685;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.674014;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:5:"event";s:7256:"a:42:{i:0;a:5:{s:4:"time";d:1698232061.595217;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232061.606941;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232061.611619;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232061.611632;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232061.624089;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232061.630212;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232061.638961;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232061.63902;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232061.640014;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232061.647915;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232061.647986;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232061.648017;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232061.651372;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:13;a:5:{s:4:"time";d:1698232061.654452;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:14;a:5:{s:4:"time";d:1698232061.65515;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:15;a:5:{s:4:"time";d:1698232061.655172;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:16;a:5:{s:4:"time";d:1698232061.655243;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:17;a:5:{s:4:"time";d:1698232061.65561;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:18;a:5:{s:4:"time";d:1698232061.660098;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698232061.66613;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698232061.669369;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:21;a:5:{s:4:"time";d:1698232061.669418;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:22;a:5:{s:4:"time";d:1698232061.669686;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698232061.672009;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:24;a:5:{s:4:"time";d:1698232061.672021;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:25;a:5:{s:4:"time";d:1698232061.672096;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:26;a:5:{s:4:"time";d:1698232061.672333;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:27;a:5:{s:4:"time";d:1698232061.673124;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:28;a:5:{s:4:"time";d:1698232061.673165;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:29;a:5:{s:4:"time";d:1698232061.673531;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:30;a:5:{s:4:"time";d:1698232061.674048;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:31;a:5:{s:4:"time";d:1698232061.674087;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:32;a:5:{s:4:"time";d:1698232061.680069;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698232061.680222;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698232061.680434;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698232061.680454;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:36;a:5:{s:4:"time";d:1698232061.680466;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:37;a:5:{s:4:"time";d:1698232061.680476;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698232061.680489;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698232061.6805;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698232061.681275;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698232061.681411;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232061.550527;s:3:"end";d:1698232061.684942;s:6:"memory";i:7904048;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1690:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607502;i:4;a:0:{}i:5;i:4632832;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607518;i:4;a:0:{}i:5;i:4633584;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607527;i:4;a:0:{}i:5;i:4634336;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607534;i:4;a:0:{}i:5;i:4635088;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607542;i:4;a:0:{}i:5;i:4635840;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607552;i:4;a:0:{}i:5;i:4637232;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.60756;i:4;a:0:{}i:5;i:4637984;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.607565;i:4;a:0:{}i:5;i:4638360;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5239:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6fd92e97";s:16:"X-Debug-Duration";s:3:"132";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6fd92e97";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:42:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:19:"/store/report/index";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61604";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232061.525927;s:12:"REQUEST_TIME";i:1698232061;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:609:"a:1:{s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6fd92e97";s:3:"url";s:36:"http://cxfoot.com/store/report/index";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232061.525927;s:10:"statusCode";i:200;s:8:"sqlCount";i:11;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7904048;s:14:"processingTime";d:0.13411378860473633;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f6fddd208.data b/runtime/debug/6538f6fddd208.data deleted file mode 100644 index 107b10c..0000000 --- a/runtime/debug/6538f6fddd208.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15318:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232061.878664;i:4;a:0:{}i:5;i:2495352;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232061.878683;i:4;a:0:{}i:5;i:2496528;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232061.896135;i:4;a:0:{}i:5;i:3634704;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.896563;i:4;a:0:{}i:5;i:3637240;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.89783;i:4;a:0:{}i:5;i:3702456;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232061.898008;i:4;a:0:{}i:5;i:3699848;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232061.905019;i:4;a:0:{}i:5;i:4186544;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.90666;i:4;a:0:{}i:5;i:4310832;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.908165;i:4;a:0:{}i:5;i:4383112;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232061.908348;i:4;a:0:{}i:5;i:4383776;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232061.908886;i:4;a:0:{}i:5;i:4407800;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232061.90892;i:4;a:0:{}i:5;i:4413872;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232061.911263;i:4;a:0:{}i:5;i:4639200;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232061.911273;i:4;a:0:{}i:5;i:4640824;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232061.914916;i:4;a:0:{}i:5;i:4793072;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.938157;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074624;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232061.938205;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077432;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.941826;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164776;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.946654;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502336;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.948068;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590192;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.950241;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612288;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.953131;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6618896;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232061.953817;i:4;a:0:{}i:5;i:6613232;}i:45;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.964105;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6994072;}i:48;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.966986;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7033736;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.96825;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7042424;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.969941;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7056304;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.971313;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7096760;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.972556;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7115672;}i:63;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232061914, 1698232061973, 59, 0, 1698232061)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232061.975686;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7272976;}i:66;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232062.004453;i:4;a:0:{}i:5;i:7139288;}}}";s:9:"profiling";s:25410:"a:3:{s:6:"memory";i:7442424;s:4:"time";d:0.14786791801452637;s:8:"messages";a:28:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232061.938224;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078936;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232061.939824;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128472;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.939855;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.940662;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.941859;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.942333;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.946686;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.946974;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.948095;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.949051;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.950279;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.952553;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.953174;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.953615;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.964142;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.964867;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.967019;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.968142;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.968285;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.969602;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.969972;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.970503;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.971337;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.97212;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.97258;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.973002;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232061914, 1698232061973, 59, 0, 1698232061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232061.975724;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232061914, 1698232061973, 59, 0, 1698232061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232061.998022;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:2:"db";s:24246:"a:1:{s:8:"messages";a:26:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.939855;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.940662;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.941859;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.942333;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.946686;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.946974;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.948095;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.949051;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.950279;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.952553;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.953174;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.953615;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.964142;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.964867;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.967019;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.968142;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.968285;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.969602;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.969972;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.970503;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.971337;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.97212;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.97258;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232061.973002;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232061914, 1698232061973, 59, 0, 1698232061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232061.975724;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232061914, 1698232061973, 59, 0, 1698232061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232061.998022;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:5:"event";s:4839:"a:27:{i:0;a:5:{s:4:"time";d:1698232061.897817;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232061.910649;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232061.915259;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232061.915272;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232061.929975;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232061.939815;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232061.94702;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232061.947069;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232061.948005;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232061.953664;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232061.953743;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232061.953776;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232061.961326;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:13;a:5:{s:4:"time";d:1698232061.961432;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:14;a:5:{s:4:"time";d:1698232061.961827;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:15;a:5:{s:4:"time";d:1698232061.971261;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698232061.973638;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:17;a:5:{s:4:"time";d:1698232061.9748;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:18;a:5:{s:4:"time";d:1698232061.974818;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:19;a:5:{s:4:"time";d:1698232061.99863;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:20;a:5:{s:4:"time";d:1698232061.998674;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:21;a:5:{s:4:"time";d:1698232061.998688;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:22;a:5:{s:4:"time";d:1698232061.998698;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:23;a:5:{s:4:"time";d:1698232061.998711;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698232061.998722;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:25;a:5:{s:4:"time";d:1698232062.004124;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698232062.004176;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232061.859193;s:3:"end";d:1698232062.007357;s:6:"memory";i:7442424;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1690:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911193;i:4;a:0:{}i:5;i:4633608;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911207;i:4;a:0:{}i:5;i:4634360;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911216;i:4;a:0:{}i:5;i:4635112;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911223;i:4;a:0:{}i:5;i:4635864;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911231;i:4;a:0:{}i:5;i:4636616;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.91124;i:4;a:0:{}i:5;i:4638008;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911248;i:4;a:0:{}i:5;i:4638760;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232061.911253;i:4;a:0:{}i:5;i:4639136;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5192:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f6fddd208";s:16:"X-Debug-Duration";s:3:"146";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f6fddd208";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:35:"/store/report/index?page=1&limit=20";s:12:"QUERY_STRING";s:15:"page=1&limit=20";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:15:"page=1&limit=20";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61673";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232061.841838;s:12:"REQUEST_TIME";i:1698232061;}s:3:"GET";a:2:{s:4:"page";s:1:"1";s:5:"limit";s:2:"20";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f6fddd208";s:3:"url";s:52:"http://cxfoot.com/store/report/index?page=1&limit=20";s:4:"ajax";i:1;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232061.841838;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7442424;s:14:"processingTime";d:0.14786791801452637;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f712a7e30.data b/runtime/debug/6538f712a7e30.data deleted file mode 100644 index 692b9f2..0000000 --- a/runtime/debug/6538f712a7e30.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22178:"a:1:{s:8:"messages";a:44:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232082.643443;i:4;a:0:{}i:5;i:2495344;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232082.643469;i:4;a:0:{}i:5;i:2496520;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232082.677426;i:4;a:0:{}i:5;i:3634696;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.677926;i:4;a:0:{}i:5;i:3637232;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.679567;i:4;a:0:{}i:5;i:3702448;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232082.679755;i:4;a:0:{}i:5;i:3699840;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232082.686767;i:4;a:0:{}i:5;i:4186536;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.689632;i:4;a:0:{}i:5;i:4310824;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.69224;i:4;a:0:{}i:5;i:4383104;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232082.692505;i:4;a:0:{}i:5;i:4383768;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232082.693632;i:4;a:0:{}i:5;i:4407792;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.693667;i:4;a:0:{}i:5;i:4413864;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232082.696726;i:4;a:0:{}i:5;i:4639280;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232082.696738;i:4;a:0:{}i:5;i:4640904;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232082.701226;i:4;a:0:{}i:5;i:4793144;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.719736;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074728;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232082.719784;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077536;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.725193;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164880;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.73125;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502440;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.732893;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590296;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.734415;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612392;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.735151;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619000;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232082.735648;i:4;a:0:{}i:5;i:6614088;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.73612;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6644824;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.742968;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6657576;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.744325;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660632;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.744984;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6667160;}i:57;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745762;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6674256;}i:60;a:6:{i:0;s:83:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232082.750538;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6803912;}i:61;a:6:{i:0;s:75:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\widgets\views\pick-file.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232082.756268;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\widgets\PickFile.php";s:4:"line";i:127;s:8:"function";s:6:"render";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:62:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\edit.php";s:4:"line";i:54;s:8:"function";s:6:"widget";s:5:"class";s:15:"yii\base\Widget";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6993136;}i:62;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232082.757943;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:88;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7001096;}i:63;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.764664;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7485704;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.765759;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7493360;}i:65;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.766055;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7505352;}i:68;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767243;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517936;}i:71;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.76796;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7523368;}i:74;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.768528;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7527056;}i:75;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.770652;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7576208;}i:76;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.771034;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7582984;}i:79;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.771997;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586504;}i:80;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.772418;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7586976;}i:81;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.772781;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7593752;}i:84;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.773525;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7597200;}i:85;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232082.785408;i:4;a:0:{}i:5;i:7630648;}}}";s:9:"profiling";s:25899:"a:3:{s:6:"memory";i:7959000;s:4:"time";d:0.1755540370941162;s:8:"messages";a:34:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232082.719803;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6079040;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232082.722747;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128576;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.722803;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129192;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.723854;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143304;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.725233;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168120;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.725813;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170880;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.731295;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505328;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.731754;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508960;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.732921;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592416;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.733832;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622560;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.734442;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616008;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.734924;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619144;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.735176;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620752;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.735472;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627264;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.736152;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646192;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.742566;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660560;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.743065;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660440;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.74415;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662824;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.744347;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662080;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.744695;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665568;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745007;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668616;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745318;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671728;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745786;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675680;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.746189;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681040;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.766088;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507472;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767004;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517416;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767271;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521552;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767792;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524688;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767984;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525120;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.76838;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528216;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.771062;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7584736;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.771842;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587792;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.772819;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595504;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.773383;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598544;}}}";s:2:"db";s:24736:"a:1:{s:8:"messages";a:32:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.722803;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129192;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.723854;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143304;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.725233;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168120;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.725813;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170880;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.731295;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505328;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.731754;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508960;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.732921;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592416;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.733832;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622560;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.734442;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616008;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.734924;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619144;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.735176;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620752;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.735472;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627264;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.736152;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6646192;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.742566;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660560;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.743065;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6660440;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.74415;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662824;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.744347;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6662080;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.744695;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6665568;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745007;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6668616;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745318;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671728;}i:58;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.745786;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675680;}i:59;a:6:{i:0;s:37:"SELECT * FROM `cx_user` WHERE `id`=65";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.746189;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:75;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6681040;}i:66;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.766088;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7507472;}i:67;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767004;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7517416;}i:69;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767271;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7521552;}i:70;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767792;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7524688;}i:72;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.767984;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7525120;}i:73;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.76838;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7528216;}i:77;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.771062;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7584736;}i:78;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.771842;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587792;}i:82;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.772819;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7595504;}i:83;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232082.773383;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7598544;}}}";s:5:"event";s:10147:"a:59:{i:0;a:5:{s:4:"time";d:1698232082.679553;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232082.695805;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232082.701754;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232082.701769;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232082.715273;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232082.722638;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232082.731811;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232082.731867;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232082.732826;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232082.735508;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232082.735572;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232082.735602;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232082.736066;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698232082.74474;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698232082.744822;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698232082.744862;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698232082.745355;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698232082.745401;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698232082.745443;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:19;a:5:{s:4:"time";d:1698232082.746228;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698232082.746447;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698232082.750529;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698232082.755302;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:23;a:5:{s:4:"time";d:1698232082.755677;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:24;a:5:{s:4:"time";d:1698232082.75626;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698232082.75735;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:26;a:5:{s:4:"time";d:1698232082.757373;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:27;a:5:{s:4:"time";d:1698232082.75739;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:28;a:5:{s:4:"time";d:1698232082.757429;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:29;a:5:{s:4:"time";d:1698232082.757441;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\widgets\PickFile";}i:30;a:5:{s:4:"time";d:1698232082.757465;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:31;a:5:{s:4:"time";d:1698232082.757547;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:32;a:5:{s:4:"time";d:1698232082.75756;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:33;a:5:{s:4:"time";d:1698232082.757588;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698232082.757937;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698232082.759172;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:36;a:5:{s:4:"time";d:1698232082.765971;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:37;a:5:{s:4:"time";d:1698232082.768421;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:38;a:5:{s:4:"time";d:1698232082.768467;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:39;a:5:{s:4:"time";d:1698232082.768715;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:40;a:5:{s:4:"time";d:1698232082.770513;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:41;a:5:{s:4:"time";d:1698232082.770525;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:42;a:5:{s:4:"time";d:1698232082.770608;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:43;a:5:{s:4:"time";d:1698232082.770875;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:44;a:5:{s:4:"time";d:1698232082.771891;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:45;a:5:{s:4:"time";d:1698232082.77194;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:46;a:5:{s:4:"time";d:1698232082.772608;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:47;a:5:{s:4:"time";d:1698232082.773429;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:48;a:5:{s:4:"time";d:1698232082.773476;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:49;a:5:{s:4:"time";d:1698232082.782638;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:50;a:5:{s:4:"time";d:1698232082.782918;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:51;a:5:{s:4:"time";d:1698232082.783149;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:52;a:5:{s:4:"time";d:1698232082.783174;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:53;a:5:{s:4:"time";d:1698232082.783187;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:54;a:5:{s:4:"time";d:1698232082.783196;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:55;a:5:{s:4:"time";d:1698232082.783211;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:56;a:5:{s:4:"time";d:1698232082.783222;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:57;a:5:{s:4:"time";d:1698232082.784423;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:58;a:5:{s:4:"time";d:1698232082.784572;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698232082.61071;s:3:"end";d:1698232082.786664;s:6:"memory";i:7959000;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1688:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696651;i:4;a:0:{}i:5;i:4633688;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696668;i:4;a:0:{}i:5;i:4634440;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696677;i:4;a:0:{}i:5;i:4635192;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696685;i:4;a:0:{}i:5;i:4635944;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696693;i:4;a:0:{}i:5;i:4636696;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696702;i:4;a:0:{}i:5;i:4638088;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.69671;i:4;a:0:{}i:5;i:4638840;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232082.696715;i:4;a:0:{}i:5;i:4639216;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:5310:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f712a7e30";s:16:"X-Debug-Duration";s:3:"175";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f712a7e30";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61698";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232082.566684;s:12:"REQUEST_TIME";i:1698232082;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:1615:"a:3:{s:52:"/statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";a:9:{s:10:"sourcePath";N;s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:7:"depends";a:1:{i:0;s:33:"app\modules\admin\assets\AppAsset";}s:2:"js";a:1:{i:0;a:1:{i:0;s:51:"statics/layuiadmin/layui/layui.all.2.5.5.js?v=1.0.0";}}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f712a7e30";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232082.566684;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7959000;s:14:"processingTime";d:0.1755540370941162;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f715a6a22.data b/runtime/debug/6538f715a6a22.data deleted file mode 100644 index 4550017..0000000 --- a/runtime/debug/6538f715a6a22.data +++ /dev/null @@ -1,141 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:9244:"a:1:{s:8:"messages";a:24:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232085.651778;i:4;a:0:{}i:5;i:2496040;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232085.6518;i:4;a:0:{}i:5;i:2497216;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232085.67279;i:4;a:0:{}i:5;i:3635392;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232085.673269;i:4;a:0:{}i:5;i:3637928;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232085.674765;i:4;a:0:{}i:5;i:3703144;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232085.675093;i:4;a:0:{}i:5;i:3700536;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232085.681757;i:4;a:0:{}i:5;i:4187232;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232085.683477;i:4;a:0:{}i:5;i:4311520;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232085.68505;i:4;a:0:{}i:5;i:4383800;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232085.685252;i:4;a:0:{}i:5;i:4384464;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232085.685819;i:4;a:0:{}i:5;i:4408488;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232085.685853;i:4;a:0:{}i:5;i:4414560;}i:20;a:6:{i:0;s:35:"Route requested: 'file/upload/file'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232085.688345;i:4;a:0:{}i:5;i:4641112;}i:21;a:6:{i:0;s:20:"Loading module: file";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232085.688355;i:4;a:0:{}i:5;i:4642736;}i:22;a:6:{i:0;s:30:"Route to run: file/upload/file";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232085.692719;i:4;a:0:{}i:5;i:4873256;}i:23;a:6:{i:0;s:75:"Running action: app\modules\file\controllers\UploadController::actionFile()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232085.693118;i:4;a:0:{}i:5;i:4881472;}i:24;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.799451;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5943480;}i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232085.799495;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5946288;}i:30;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.805139;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6033832;}i:33;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', 'jpg', 'image', 16225, 0)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.815642;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6627784;}i:36;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.846394;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6668608;}i:39;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.897295;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6687520;}i:42;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232085691, 1698232085898, 207, 0, 1698232085)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.900169;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6745816;}i:45;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232085.926004;i:4;a:0:{}i:5;i:6603176;}}}";s:9:"profiling";s:13263:"a:3:{s:6:"memory";i:6906224;s:4:"time";d:0.29851412773132324;s:8:"messages";a:14:{i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232085.799511;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5947792;}i:27;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232085.802935;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997328;}i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.802968;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997944;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.803873;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6012144;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.805172;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6037072;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.805687;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6039832;}i:34;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', 'jpg', 'image', 16225, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.81569;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6628248;}i:35;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', 'jpg', 'image', 16225, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.844948;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6630016;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.846431;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6670728;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.896796;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6693688;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.897326;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6691136;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.897882;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6694272;}i:43;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232085691, 1698232085898, 207, 0, 1698232085)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.900203;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6744176;}i:44;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232085691, 1698232085898, 207, 0, 1698232085)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.921741;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6746576;}}}";s:2:"db";s:11975:"a:1:{s:8:"messages";a:12:{i:28;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.802968;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:5997944;}i:29;a:6:{i:0;s:39:"SHOW FULL COLUMNS FROM `cx_upload_file`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.803873;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6012144;}i:31;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.805172;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6037072;}i:32;a:6:{i:0;s:784:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_upload_file' AND `kcu`.`TABLE_NAME` = 'cx_upload_file'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.805687;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:558;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6039832;}i:34;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', 'jpg', 'image', 16225, 0)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.81569;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6628248;}i:35;a:6:{i:0;s:204:"INSERT INTO `cx_upload_file` (`cx_mch_id`, `user_id`, `file_url`, `extension`, `type`, `size`, `group_id`) VALUES (0, 0, '/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', 'jpg', 'image', 16225, 0)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.844948;i:4;a:2:{i:0;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:566;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:72:"D:\phpstudy_pro\WWW\cxfoot\modules\file\controllers\UploadController.php";s:4:"line";i:415;s:8:"function";s:10:"uploadFile";s:5:"class";s:45:"app\modules\file\controllers\UploadController";s:4:"type";s:2:"->";}}i:5;i:6630016;}i:37;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.846431;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6670728;}i:38;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.896796;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6693688;}i:40;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.897326;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6691136;}i:41;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232085.897882;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6694272;}i:43;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232085691, 1698232085898, 207, 0, 1698232085)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.900203;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6744176;}i:44;a:6:{i:0;s:428:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'file/upload/file', 'file', 'upload', 'file', '/file/upload/file', 'POST', '[]', '127.0.0.1', 1, '2023-10-25', 1698232085691, 1698232085898, 207, 0, 1698232085)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232085.921741;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6746576;}}}";s:5:"event";s:4178:"a:23:{i:0;a:5:{s:4:"time";d:1698232085.674732;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232085.687621;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232085.693079;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232085.693095;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:4;a:5:{s:4:"time";d:1698232085.693106;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:5;a:5:{s:4:"time";d:1698232085.792662;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:6;a:5:{s:4:"time";d:1698232085.802925;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698232085.806149;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:8;a:5:{s:4:"time";d:1698232085.811934;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:9;a:5:{s:4:"time";d:1698232085.811957;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:10;a:5:{s:4:"time";d:1698232085.845668;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:26:"app\models\file\UploadFile";}i:11;a:5:{s:4:"time";d:1698232085.846324;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:12;a:5:{s:4:"time";d:1698232085.898718;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:13;a:5:{s:4:"time";d:1698232085.899931;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:14;a:5:{s:4:"time";d:1698232085.89995;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:15;a:5:{s:4:"time";d:1698232085.921867;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698232085.921911;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:45:"app\modules\file\controllers\UploadController";}i:17;a:5:{s:4:"time";d:1698232085.921925;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"app\modules\file\Module";}i:18;a:5:{s:4:"time";d:1698232085.921935;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:19;a:5:{s:4:"time";d:1698232085.92195;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:20;a:5:{s:4:"time";d:1698232085.921961;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:21;a:5:{s:4:"time";d:1698232085.925738;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:22;a:5:{s:4:"time";d:1698232085.925785;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232085.630179;s:3:"end";d:1698232085.928938;s:6:"memory";i:6906224;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1686:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688274;i:4;a:0:{}i:5;i:4635840;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688289;i:4;a:0:{}i:5;i:4636592;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688297;i:4;a:0:{}i:5;i:4637344;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688305;i:4;a:0:{}i:5;i:4638096;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688313;i:4;a:0:{}i:5;i:4638848;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688322;i:4;a:0:{}i:5;i:4640240;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.68833;i:4;a:0:{}i:5;i:4640992;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232085.688335;i:4;a:0:{}i:5;i:4641368;}}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";}";s:7:"request";s:5567:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryBjyFVeraGnb6ojIX";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:5:"14755";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f715a6a22";s:16:"X-Debug-Duration";s:3:"297";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f715a6a22";}s:5:"route";s:16:"file/upload/file";s:6:"action";s:59:"app\modules\file\controllers\UploadController::actionFile()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:45:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:17:"/file/upload/file";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:17:"/file/upload/file";s:11:"REMOTE_PORT";s:5:"61698";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:68:"multipart/form-data; boundary=----WebKitFormBoundaryBjyFVeraGnb6ojIX";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:5:"14755";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232085.60932;s:12:"REQUEST_TIME";i:1698232085;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:1:{s:4:"file";a:5:{s:4:"name";s:10:"雪碧.jpg";s:4:"type";s:10:"image/jpeg";s:8:"tmp_name";s:22:"C:\Windows\phpCD2E.tmp";s:5:"error";i:0;s:4:"size";i:14571;}}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f715a6a22";s:3:"url";s:34:"http://cxfoot.com/file/upload/file";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232085.60932;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6906224;s:14:"processingTime";d:0.29851412773132324;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f716613c6.data b/runtime/debug/6538f716613c6.data deleted file mode 100644 index 63adff0..0000000 --- a/runtime/debug/6538f716613c6.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16035:"a:1:{s:8:"messages";a:35:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232086.36836;i:4;a:0:{}i:5;i:2497728;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232086.368384;i:4;a:0:{}i:5;i:2498904;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232086.389238;i:4;a:0:{}i:5;i:3637080;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232086.38968;i:4;a:0:{}i:5;i:3639616;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232086.391102;i:4;a:0:{}i:5;i:3704832;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232086.391303;i:4;a:0:{}i:5;i:3702224;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232086.39737;i:4;a:0:{}i:5;i:4188920;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232086.399219;i:4;a:0:{}i:5;i:4313208;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232086.400769;i:4;a:0:{}i:5;i:4385488;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232086.400947;i:4;a:0:{}i:5;i:4386152;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232086.4015;i:4;a:0:{}i:5;i:4410176;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232086.401534;i:4;a:0:{}i:5;i:4416248;}i:20;a:6:{i:0;s:36:"Route requested: 'store/report/edit'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232086.403919;i:4;a:0:{}i:5;i:4643104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232086.403929;i:4;a:0:{}i:5;i:4644728;}i:22;a:6:{i:0;s:31:"Route to run: store/report/edit";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232086.407924;i:4;a:0:{}i:5;i:4796968;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.427042;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078552;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232086.427092;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6081360;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.433484;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168704;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.438749;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6506264;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.440481;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6594120;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.443447;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6616216;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.4483;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622824;}i:44;a:6:{i:0;s:76:"Running action: app\modules\store\controllers\ReportController::actionEdit()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232086.449147;i:4;a:0:{}i:5;i:6618040;}i:45;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.44975;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6648776;}i:48;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451001;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6661528;}i:51;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451715;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664584;}i:54;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452241;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6671072;}i:57;a:6:{i:0;s:91:"Failed to set unsafe attribute 'phone' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232086.45839;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6931184;}i:58;a:6:{i:0;s:90:"Failed to set unsafe attribute 'file' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232086.458408;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6932440;}i:59;a:6:{i:0;s:91:"Failed to set unsafe attribute '_csrf' in 'app\modules\store\models\report\ReportEditForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232086.458416;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:68;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6933696;}i:60;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', `step`=2, `final_at`=1698232086 WHERE `id`=1";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.459823;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:71;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6977960;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.486603;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7026248;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.48803;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7050736;}i:69;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232085434177.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232086407, 1698232086489, 82, 0, 1698232086)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.490837;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7194936;}i:72;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232086.53899;i:4;a:0:{}i:5;i:7045160;}}}";s:9:"profiling";s:24358:"a:3:{s:6:"memory";i:7348208;s:4:"time";d:0.19473600387573242;s:8:"messages";a:30:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232086.427111;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6082864;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232086.430861;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6132400;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.43091;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.432007;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.433523;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.434128;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.438794;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.43923;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.440512;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.441694;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.443489;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.44413;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.44835;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.448871;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.449777;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.450662;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451031;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451556;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451736;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452008;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669480;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452263;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452523;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', `step`=2, `final_at`=1698232086 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.459852;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:71;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6979072;}i:62;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', `step`=2, `final_at`=1698232086 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.485382;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:71;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980800;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.486634;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.487572;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.488058;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.488546;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232085434177.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232086407, 1698232086489, 82, 0, 1698232086)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.490869;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232085434177.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232086407, 1698232086489, 82, 0, 1698232086)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.534916;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:2:"db";s:23194:"a:1:{s:8:"messages";a:28:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.43091;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6133016;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.432007;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6147128;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.433523;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6171944;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.434128;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6174704;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.438794;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6509152;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.43923;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6512784;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.440512;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6596240;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.441694;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626384;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.443489;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619832;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.44413;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622968;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.44835;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6624576;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.448871;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6631088;}i:46;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.449777;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6650144;}i:47;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.450662;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664512;}i:49;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451031;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6664392;}i:50;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451556;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666776;}i:52;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.451736;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6666032;}i:53;a:6:{i:0;s:40:"SELECT * FROM `cx_report` WHERE `id`='1'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452008;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:54;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6669480;}i:55;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452263;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6672528;}i:56;a:6:{i:0;s:48:"SELECT * FROM `cx_store_user` WHERE `user_id`=63";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.452523;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6675640;}i:61;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', `step`=2, `final_at`=1698232086 WHERE `id`=1";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.459852;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:71;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6979072;}i:62;a:6:{i:0;s:138:"UPDATE `cx_report` SET `final_path`='/upload/0/0/upload/file/2023/1025/1698232085434177.jpg', `step`=2, `final_at`=1698232086 WHERE `id`=1";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.485382;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportEditForm.php";s:4:"line";i:71;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:70;s:8:"function";s:4:"edit";s:5:"class";s:46:"app\modules\store\models\report\ReportEditForm";s:4:"type";s:2:"->";}}i:5;i:6980800;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.486634;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7028368;}i:65;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.487572;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7056904;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.488058;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7054352;}i:68;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232086.488546;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7057488;}i:70;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232085434177.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232086407, 1698232086489, 82, 0, 1698232086)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.490869;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7193296;}i:71;a:6:{i:0;s:564:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/edit', 'store', 'report', 'edit', '/store/report/edit?id=1', 'POST', '{\"phone\":\"11111111111\",\"final_path\":\"\\/upload\\/0\\/0\\/upload\\/file\\/2023\\/1025\\/1698232085434177.jpg\",\"file\":\"\"}', '127.0.0.1', 1, '2023-10-25', 1698232086407, 1698232086489, 82, 0, 1698232086)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232086.534916;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7195824;}}}";s:5:"event";s:6394:"a:36:{i:0;a:5:{s:4:"time";d:1698232086.391087;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232086.40329;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232086.408275;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232086.408289;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232086.422017;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232086.430849;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232086.439289;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232086.439349;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232086.440405;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232086.448924;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232086.449009;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232086.449043;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232086.449677;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698232086.45205;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:14;a:5:{s:4:"time";d:1698232086.452099;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:15;a:5:{s:4:"time";d:1698232086.452134;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698232086.452556;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:17;a:5:{s:4:"time";d:1698232086.4526;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:18;a:5:{s:4:"time";d:1698232086.458749;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:19;a:5:{s:4:"time";d:1698232086.458815;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportEditForm";}i:20;a:5:{s:4:"time";d:1698232086.458841;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:21;a:5:{s:4:"time";d:1698232086.45963;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:22;a:5:{s:4:"time";d:1698232086.459648;s:4:"name";s:12:"beforeUpdate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:23;a:5:{s:4:"time";d:1698232086.485935;s:4:"name";s:11:"afterUpdate";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Report";}i:24;a:5:{s:4:"time";d:1698232086.486534;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698232086.489221;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698232086.48997;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698232086.489988;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698232086.535041;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698232086.535088;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:30;a:5:{s:4:"time";d:1698232086.535101;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:31;a:5:{s:4:"time";d:1698232086.535111;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698232086.535125;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698232086.535137;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698232086.538672;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698232086.538716;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698232086.346596;s:3:"end";d:1698232086.54164;s:6:"memory";i:7348208;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1689:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403848;i:4;a:0:{}i:5;i:4637512;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403862;i:4;a:0:{}i:5;i:4638264;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403871;i:4;a:0:{}i:5;i:4639016;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403879;i:4;a:0:{}i:5;i:4639768;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403887;i:4;a:0:{}i:5;i:4640520;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403896;i:4;a:0:{}i:5;i:4641912;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403904;i:4;a:0:{}i:5;i:4642664;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232086.403909;i:4;a:0:{}i:5;i:4643040;}}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";}";s:7:"request";s:6260:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:12:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"origin";s:17:"http://cxfoot.com";s:12:"content-type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"content-length";s:3:"204";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f716613c6";s:16:"X-Debug-Duration";s:3:"193";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f716613c6";}s:5:"route";s:17:"store/report/edit";s:6:"action";s:60:"app\modules\store\controllers\ReportController::actionEdit()";s:12:"actionParams";a:1:{s:2:"id";s:1:"1";}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:3:{s:12:"Content Type";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:3:"Raw";s:204:"phone=11111111111&final_path=%2Fupload%2F0%2F0%2Fupload%2Ffile%2F2023%2F1025%2F1698232085434177.jpg&file=&_csrf=ToWlKTQR2PnWER6tR6S7dVRheaaEtmb9Pv5T8eCkI2sftsRRYHmQvox-bvUgwc8tIQU80cibA7trzH6J1cp3XA%3D%3D";s:17:"Decoded to Params";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698232085434177.jpg";s:4:"file";s:0:"";s:5:"_csrf";s:88:"ToWlKTQR2PnWER6tR6S7dVRheaaEtmb9Pv5T8eCkI2sftsRRYHmQvox-bvUgwc8tIQU80cibA7trzH6J1cp3XA==";}}s:6:"SERVER";a:46:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:23:"/store/report/edit?id=1";s:12:"QUERY_STRING";s:4:"id=1";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:4:"id=1";s:12:"REDIRECT_URL";s:18:"/store/report/edit";s:11:"REMOTE_PORT";s:5:"61698";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ORIGIN";s:17:"http://cxfoot.com";s:12:"CONTENT_TYPE";s:48:"application/x-www-form-urlencoded; charset=UTF-8";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:14:"CONTENT_LENGTH";s:3:"204";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232086.330349;s:12:"REQUEST_TIME";i:1698232086;}s:3:"GET";a:1:{s:2:"id";s:1:"1";}s:4:"POST";a:4:{s:5:"phone";s:11:"11111111111";s:10:"final_path";s:54:"/upload/0/0/upload/file/2023/1025/1698232085434177.jpg";s:4:"file";s:0:"";s:5:"_csrf";s:88:"ToWlKTQR2PnWER6tR6S7dVRheaaEtmb9Pv5T8eCkI2sftsRRYHmQvox-bvUgwc8tIQU80cibA7trzH6J1cp3XA==";}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f716613c6";s:3:"url";s:40:"http://cxfoot.com/store/report/edit?id=1";s:4:"ajax";i:1;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232086.330349;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7348208;s:14:"processingTime";d:0.19473600387573242;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f717d0620.data b/runtime/debug/6538f717d0620.data deleted file mode 100644 index 8986a14..0000000 --- a/runtime/debug/6538f717d0620.data +++ /dev/null @@ -1,211 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:18872:"a:1:{s:8:"messages";a:38:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232087.826932;i:4;a:0:{}i:5;i:2494472;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232087.826955;i:4;a:0:{}i:5;i:2495648;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232087.845171;i:4;a:0:{}i:5;i:3633824;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.845602;i:4;a:0:{}i:5;i:3636360;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.846941;i:4;a:0:{}i:5;i:3701576;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232087.847132;i:4;a:0:{}i:5;i:3698968;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232087.852828;i:4;a:0:{}i:5;i:4185664;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.854464;i:4;a:0:{}i:5;i:4309952;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.85598;i:4;a:0:{}i:5;i:4382232;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232087.856158;i:4;a:0:{}i:5;i:4382896;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232087.8569;i:4;a:0:{}i:5;i:4406920;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.856935;i:4;a:0:{}i:5;i:4412992;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232087.859672;i:4;a:0:{}i:5;i:4638104;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232087.859683;i:4;a:0:{}i:5;i:4639728;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232087.86342;i:4;a:0:{}i:5;i:4791976;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.8827;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6073560;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232087.882757;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6076368;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.887036;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6163712;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.89215;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6501272;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.893694;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6589128;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895185;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6611224;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895874;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617832;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232087.896356;i:4;a:0:{}i:5;i:6612168;}i:45;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\report\index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232087.899719;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6742656;}i:46;a:6:{i:0;s:84:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698232087.902061;i:4;a:1:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:46;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6832920;}i:47;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.90908;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7402000;}i:48;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.909933;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7409656;}i:49;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.910193;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7416016;}i:52;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911412;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428600;}i:55;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.912118;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435312;}i:58;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.912666;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7439000;}i:59;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.914947;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7488472;}i:60;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.915337;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7495248;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.915895;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7498768;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.916056;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7499240;}i:65;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.916362;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7511648;}i:68;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.916817;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7515096;}i:69;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232087.924222;i:4;a:0:{}i:5;i:7572168;}}}";s:9:"profiling";s:20803:"a:3:{s:6:"memory";i:7904048;s:4:"time";d:0.1231839656829834;s:8:"messages";a:24:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232087.882883;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077872;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232087.884697;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6127408;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.884734;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.885557;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.887072;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.887581;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.892189;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.892565;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.893722;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.894605;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895212;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895658;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895898;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.896192;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.910225;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911166;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911439;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911957;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.912141;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.912532;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.915365;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.915775;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.916387;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.916704;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:2:"db";s:19640:"a:1:{s:8:"messages";a:22:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.884734;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128024;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.885557;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6142136;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.887072;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6166952;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.887581;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6169712;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.892189;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6504160;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.892565;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6507792;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.893722;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6591248;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.894605;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6621392;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895212;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6614840;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895658;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6617976;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.895898;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619584;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.896192;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6626096;}i:50;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.910225;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7418136;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911166;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7428080;}i:53;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911439;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7432216;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.911957;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7435352;}i:56;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.912141;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7437064;}i:57;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.912532;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:34;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7440160;}i:61;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.915365;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7497000;}i:62;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.915775;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7500056;}i:66;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.916387;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7513400;}i:67;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232087.916704;i:4;a:3:{i:0;a:5:{s:4:"file";s:44:"D:\phpstudy_pro\WWW\cxfoot\models\Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:52:"D:\phpstudy_pro\WWW\cxfoot\components\SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:63:"D:\phpstudy_pro\WWW\cxfoot\modules\store\views\layouts\main.php";s:4:"line";i:230;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7516440;}}}";s:5:"event";s:7255:"a:42:{i:0;a:5:{s:4:"time";d:1698232087.846926;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232087.85904;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232087.863774;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232087.863789;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232087.87736;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232087.884686;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232087.89262;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232087.892674;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232087.893621;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232087.896228;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232087.896292;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232087.896321;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232087.89971;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:13;a:5:{s:4:"time";d:1698232087.901145;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:14;a:5:{s:4:"time";d:1698232087.901627;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:15;a:5:{s:4:"time";d:1698232087.901648;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:16;a:5:{s:4:"time";d:1698232087.901715;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:17;a:5:{s:4:"time";d:1698232087.902055;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:18;a:5:{s:4:"time";d:1698232087.905139;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698232087.910117;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698232087.91257;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:21;a:5:{s:4:"time";d:1698232087.912613;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:22;a:5:{s:4:"time";d:1698232087.912837;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698232087.914805;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:24;a:5:{s:4:"time";d:1698232087.914818;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:25;a:5:{s:4:"time";d:1698232087.9149;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:23:"yii\widgets\Breadcrumbs";}i:26;a:5:{s:4:"time";d:1698232087.915183;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:27;a:5:{s:4:"time";d:1698232087.915812;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:28;a:5:{s:4:"time";d:1698232087.915854;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:29;a:5:{s:4:"time";d:1698232087.916233;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:30;a:5:{s:4:"time";d:1698232087.916739;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:31;a:5:{s:4:"time";d:1698232087.916779;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:32;a:5:{s:4:"time";d:1698232087.922097;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698232087.922248;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698232087.922462;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698232087.922481;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:36;a:5:{s:4:"time";d:1698232087.922494;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:37;a:5:{s:4:"time";d:1698232087.922503;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698232087.922517;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698232087.922528;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698232087.923282;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698232087.923415;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698232087.801658;s:3:"end";d:1698232087.92514;s:6:"memory";i:7904048;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1691:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859599;i:4;a:0:{}i:5;i:4632832;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859615;i:4;a:0:{}i:5;i:4633584;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859623;i:4;a:0:{}i:5;i:4634336;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859631;i:4;a:0:{}i:5;i:4635088;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859639;i:4;a:0:{}i:5;i:4635840;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859648;i:4;a:0:{}i:5;i:4637232;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859656;i:4;a:0:{}i:5;i:4637984;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232087.859661;i:4;a:0:{}i:5;i:4638360;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5239:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:40:"http://cxfoot.com/store/report/edit?id=1";s:6:"accept";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:25:"upgrade-insecure-requests";s:1:"1";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f717d0620";s:16:"X-Debug-Duration";s:3:"123";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f717d0620";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:42:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:19:"/store/report/index";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61698";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:40:"http://cxfoot.com/store/report/edit?id=1";s:11:"HTTP_ACCEPT";s:135:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:30:"HTTP_UPGRADE_INSECURE_REQUESTS";s:1:"1";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232087.779364;s:12:"REQUEST_TIME";i:1698232087;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:609:"a:1:{s:33:"app\modules\store\assets\AppAsset";a:9:{s:8:"basePath";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f717d0620";s:3:"url";s:36:"http://cxfoot.com/store/report/index";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232087.779364;s:10:"statusCode";i:200;s:8:"sqlCount";i:11;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7904048;s:14:"processingTime";d:0.1231839656829834;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f71832e12.data b/runtime/debug/6538f71832e12.data deleted file mode 100644 index f0103bd..0000000 --- a/runtime/debug/6538f71832e12.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15321:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232088.171087;i:4;a:0:{}i:5;i:2495352;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232088.171109;i:4;a:0:{}i:5;i:2496528;}i:2;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232088.19626;i:4;a:0:{}i:5;i:3634704;}i:3;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232088.196756;i:4;a:0:{}i:5;i:3637240;}i:4;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232088.201902;i:4;a:0:{}i:5;i:3702456;}i:5;a:6:{i:0;s:15:"Session started";i:1;i:4;i:2;s:21:"yii\web\Session::open";i:3;d:1698232088.202215;i:4;a:0:{}i:5;i:3699848;}i:6;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232088.207668;i:4;a:0:{}i:5;i:4186544;}i:7;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232088.209359;i:4;a:0:{}i:5;i:4310832;}i:8;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232088.211002;i:4;a:0:{}i:5;i:4383112;}i:9;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232088.211318;i:4;a:0:{}i:5;i:4383776;}i:10;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232088.212501;i:4;a:0:{}i:5;i:4407800;}i:11;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232088.212538;i:4;a:0:{}i:5;i:4413872;}i:20;a:6:{i:0;s:37:"Route requested: 'store/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232088.216803;i:4;a:0:{}i:5;i:4639200;}i:21;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232088.216818;i:4;a:0:{}i:5;i:4640824;}i:22;a:6:{i:0;s:32:"Route to run: store/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232088.221316;i:4;a:0:{}i:5;i:4793072;}i:23;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.244021;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6074624;}i:24;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232088.244153;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6077432;}i:29;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.248962;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6164776;}i:32;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.255204;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6502336;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.256899;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6590192;}i:38;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.264291;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6612288;}i:41;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.267298;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6618896;}i:44;a:6:{i:0;s:77:"Running action: app\modules\store\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232088.268696;i:4;a:0:{}i:5;i:6613232;}i:45;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.277859;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6994072;}i:48;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.287493;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7033736;}i:51;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.288061;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7042424;}i:54;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.289137;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7056304;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.290418;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7096760;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.291801;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7115672;}i:63;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232088220, 1698232088293, 73, 0, 1698232088)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232088.295342;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7272976;}i:66;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232088.439072;i:4;a:0:{}i:5;i:7139288;}}}";s:9:"profiling";s:25408:"a:3:{s:6:"memory";i:7442424;s:4:"time";d:0.29105401039123535;s:8:"messages";a:28:{i:25;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232088.244195;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6078936;}i:26;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232088.246098;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6128472;}i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.246132;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.246978;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.249067;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.250243;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.25525;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.255719;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.256936;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.263592;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.264324;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.265685;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.26758;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.268478;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.277897;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.286255;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.287524;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.287998;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.288085;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.288836;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.28919;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.289658;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.290444;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.291345;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.291829;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.292336;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232088220, 1698232088293, 73, 0, 1698232088)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232088.29538;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232088220, 1698232088293, 73, 0, 1698232088)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232088.434635;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:2:"db";s:24244:"a:1:{s:8:"messages";a:26:{i:27;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.246132;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6129088;}i:28;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_store_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.246978;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6143200;}i:30;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.249067;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6168016;}i:31;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_store_user' AND `kcu`.`TABLE_NAME` = 'cx_store_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.250243;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6170776;}i:33;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.25525;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6505224;}i:34;a:6:{i:0;s:65:"SELECT * FROM `cx_store_user` WHERE (`id`=93) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.255719;i:4;a:2:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:90;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6508856;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.256936;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6592312;}i:37;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.263592;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6622456;}i:39;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.264324;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6615904;}i:40;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.265685;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6619040;}i:42;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.26758;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6620648;}i:43;a:6:{i:0;s:76:"SELECT * FROM `cx_user` WHERE (`id`=63) AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.268478;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:169;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\StoreUser.php";s:4:"line";i:187;s:8:"function";s:10:"getAuthKey";s:5:"class";s:20:"app\models\StoreUser";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:68:"D:\phpstudy_pro\WWW\cxfoot\modules\store\behaviors\LoginBehavior.php";s:4:"line";i:40;s:8:"function";s:5:"__get";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:6627160;}i:46;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.277897;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6996120;}i:47;a:6:{i:0;s:145:"SELECT COUNT(*) FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.286255;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:79;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:6997928;}i:49;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.287524;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7036200;}i:50;a:6:{i:0;s:354:"SELECT `o`.`id`, `o`.`model_number`, `o`.`initial_path`, `o`.`final_path`, `o`.`pdf_path`, `o`.`step`, `u`.`real_name`, `u`.`mobile_phone`, `s`.`name` AS `store_name`, `o`.`created_at` FROM `cx_report` `o` LEFT JOIN `cx_user` `u` ON o.user_id=u.id LEFT JOIN `cx_store` `s` ON o.store_id=s.id WHERE `o`.`store_id`=3 ORDER BY `o`.`created_at` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.287998;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7040352;}i:52;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.288085;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7044168;}i:53;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_report`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.288836;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7058912;}i:55;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.28919;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7059544;}i:56;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_report' AND `kcu`.`TABLE_NAME` = 'cx_report'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.289658;i:4;a:2:{i:0;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\models\report\ReportListForm.php";s:4:"line";i:81;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:73:"D:\phpstudy_pro\WWW\cxfoot\modules\store\controllers\ReportController.php";s:4:"line";i:43;s:8:"function";s:6:"search";s:5:"class";s:46:"app\modules\store\models\report\ReportListForm";s:4:"type";s:2:"->";}}i:5;i:7062304;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.290444;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7098880;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.291345;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7121840;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.291829;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7119288;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232088.292336;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7122424;}i:64;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232088220, 1698232088293, 73, 0, 1698232088)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232088.29538;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7271336;}i:65;a:6:{i:0;s:479:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'store/report/index', 'store', 'report', 'index', '/store/report/index?page=1&limit=20', 'GET', '{\"page\":\"1\",\"limit\":\"20\"}', '127.0.0.1', 1, '2023-10-25', 1698232088220, 1698232088293, 73, 0, 1698232088)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232088.434635;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7279496;}}}";s:5:"event";s:4841:"a:27:{i:0;a:5:{s:4:"time";d:1698232088.20188;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232088.214466;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232088.221729;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698232088.221747;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698232088.23916;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:5;a:5:{s:4:"time";d:1698232088.246089;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:6;a:5:{s:4:"time";d:1698232088.255778;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:7;a:5:{s:4:"time";d:1698232088.255837;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\StoreUser";}i:8;a:5:{s:4:"time";d:1698232088.256827;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232088.268532;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:10;a:5:{s:4:"time";d:1698232088.268615;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:11;a:5:{s:4:"time";d:1698232088.268648;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:12;a:5:{s:4:"time";d:1698232088.275725;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:13;a:5:{s:4:"time";d:1698232088.275835;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\models\report\ReportListForm";}i:14;a:5:{s:4:"time";d:1698232088.276238;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:15;a:5:{s:4:"time";d:1698232088.290366;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:16;a:5:{s:4:"time";d:1698232088.293117;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:17;a:5:{s:4:"time";d:1698232088.294432;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:18;a:5:{s:4:"time";d:1698232088.294456;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:19;a:5:{s:4:"time";d:1698232088.435256;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:20;a:5:{s:4:"time";d:1698232088.435301;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:46:"app\modules\store\controllers\ReportController";}i:21;a:5:{s:4:"time";d:1698232088.435315;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:22;a:5:{s:4:"time";d:1698232088.435324;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:23;a:5:{s:4:"time";d:1698232088.435338;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698232088.435349;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:25;a:5:{s:4:"time";d:1698232088.438764;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698232088.438808;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232088.150299;s:3:"end";d:1698232088.441646;s:6:"memory";i:7442424;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1689:"a:3:{s:8:"messages";a:8:{i:12;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.216719;i:4;a:0:{}i:5;i:4633608;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.216741;i:4;a:0:{}i:5;i:4634360;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.21675;i:4;a:0:{}i:5;i:4635112;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.216758;i:4;a:0:{}i:5;i:4635864;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.216767;i:4;a:0:{}i:5;i:4636616;}i:17;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.216776;i:4;a:0:{}i:5;i:4638008;}i:18;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.216785;i:4;a:0:{}i:5;i:4638760;}i:19;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232088.21679;i:4;a:0:{}i:5;i:4639136;}}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";}";s:7:"request";s:5192:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:6:"cookie";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:15:"accept-language";s:14:"zh-CN,zh;q=0.9";s:15:"accept-encoding";s:13:"gzip, deflate";s:7:"referer";s:36:"http://cxfoot.com/store/report/index";s:16:"x-requested-with";s:14:"XMLHttpRequest";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:6:"accept";s:46:"application/json, text/javascript, */*; q=0.01";s:10:"connection";s:5:"close";s:4:"host";s:10:"cxfoot.com";}s:15:"responseHeaders";a:8:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:7:"Expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"Cache-Control";s:35:"no-store, no-cache, must-revalidate";s:6:"Pragma";s:8:"no-cache";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f71832e12";s:16:"X-Debug-Duration";s:3:"289";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f71832e12";}s:5:"route";s:18:"store/report/index";s:6:"action";s:61:"app\modules\store\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:1;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:35:"/store/report/index?page=1&limit=20";s:12:"QUERY_STRING";s:15:"page=1&limit=20";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:15:"page=1&limit=20";s:12:"REDIRECT_URL";s:19:"/store/report/index";s:11:"REMOTE_PORT";s:5:"61699";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:11:"HTTP_COOKIE";s:210:"PHPSESSID=8les3psm8u9msejmnje2ei0987; _csrf=c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Q3axThHGZopXgetXudEwL-eFU2-x5nT7%22%3B%7D";s:20:"HTTP_ACCEPT_LANGUAGE";s:14:"zh-CN,zh;q=0.9";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:12:"HTTP_REFERER";s:36:"http://cxfoot.com/store/report/index";s:21:"HTTP_X_REQUESTED_WITH";s:14:"XMLHttpRequest";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36";s:11:"HTTP_ACCEPT";s:46:"application/json, text/javascript, */*; q=0.01";s:15:"HTTP_CONNECTION";s:5:"close";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232088.132988;s:12:"REQUEST_TIME";i:1698232088;}s:3:"GET";a:2:{s:4:"page";s:1:"1";s:5:"limit";s:2:"20";}s:4:"POST";a:0:{}s:6:"COOKIE";a:2:{s:9:"PHPSESSID";s:26:"8les3psm8u9msejmnje2ei0987";s:5:"_csrf";s:130:"c7f33ab43892c74e59d41add614438b8d5634a858ae3625d7b925ef8b36b1f07a:2:{i:0;s:5:"_csrf";i:1;s:32:"Q3axThHGZopXgetXudEwL-eFU2-x5nT7";}";}s:5:"FILES";a:0:{}s:7:"SESSION";a:5:{s:7:"__flash";a:0:{}s:32:"__captcha/store/passport/captcha";s:4:"W7NS";s:37:"__captcha/store/passport/captchacount";i:1;s:10:"__store_id";i:93;s:9:"__authKey";s:32:"MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV";}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f71832e12";s:3:"url";s:52:"http://cxfoot.com/store/report/index?page=1&limit=20";s:4:"ajax";i:1;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232088.132988;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7442424;s:14:"processingTime";d:0.29105401039123535;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/6538f72f4ebb4.data b/runtime/debug/6538f72f4ebb4.data deleted file mode 100644 index cea16eb..0000000 --- a/runtime/debug/6538f72f4ebb4.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16968:"a:1:{s:8:"messages";a:33:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232111.299786;i:4;a:0:{}i:5;i:2495616;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232111.299809;i:4;a:0:{}i:5;i:2496792;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232111.321781;i:4;a:0:{}i:5;i:4072024;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698232111.325625;i:4;a:0:{}i:5;i:4288472;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232111.326217;i:4;a:0:{}i:5;i:4290680;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232111.326452;i:4;a:0:{}i:5;i:4298864;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232111.32802;i:4;a:0:{}i:5;i:4371144;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232111.328206;i:4;a:0:{}i:5;i:4371488;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698232111.328788;i:4;a:0:{}i:5;i:4395512;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232111.328824;i:4;a:0:{}i:5;i:4401904;}i:18;a:6:{i:0;s:35:"Route requested: 'api/report/index'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698232111.331896;i:4;a:0:{}i:5;i:4625456;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698232111.331908;i:4;a:0:{}i:5;i:4627080;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.357597;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6051344;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232111.358222;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6053776;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.362864;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6140088;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.369378;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6476656;}i:32;a:6:{i:0;s:30:"Route to run: api/report/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698232111.379121;i:4;a:0:{}i:5;i:6705632;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.385621;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6982368;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.386307;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6990624;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387328;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7004472;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387956;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008352;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.389334;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7030448;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.390022;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038432;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698232111.396574;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7278416;}i:52;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698232111.397766;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:56;s:8:"function";s:6:"__call";s:5:"class";s:20:"yii\redis\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7364760;}i:53;a:6:{i:0;s:75:"Running action: app\modules\api\controllers\ReportController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698232111.398051;i:4;a:0:{}i:5;i:7360840;}i:54;a:6:{i:0;s:85:"Failed to set unsafe attribute 'access_token' in 'app\modules\api\models\ReportForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232111.401128;i:4;a:1:{i:0;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:7472624;}i:55;a:6:{i:0;s:79:"Failed to set unsafe attribute 'X-Csrf' in 'app\modules\api\models\ReportForm'.";i:1;i:8;i:2;s:33:"yii\base\Model::onUnsafeAttribute";i:3;d:1698232111.401144;i:4;a:1:{i:0;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:61;s:8:"function";s:5:"__set";s:5:"class";s:18:"yii\base\Component";s:4:"type";s:2:"->";}}i:5;i:7473864;}i:56;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.403029;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7504744;}i:59;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.404461;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7542000;}i:62;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.405731;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7588664;}i:65;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.407147;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613208;}i:68;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232111335, 1698232111410, 75, 0, 1698232111)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232111.413072;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7772056;}}}";s:9:"profiling";s:25701:"a:3:{s:6:"memory";i:8461368;s:4:"time";d:0.15489697456359863;s:8:"messages";a:30:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232111.358249;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054904;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698232111.360213;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6104064;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.360255;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6104304;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.361175;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6120136;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.362901;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142952;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.363466;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6145336;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.36941;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477904;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.36988;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484576;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.385655;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983936;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.386211;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987624;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.386333;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992744;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387061;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005008;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387353;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008088;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387803;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011224;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010472;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.388773;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040616;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.38936;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034064;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.389795;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037200;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.390046;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040184;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.390343;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046648;}i:57;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.403065;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7506576;}i:58;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.40345;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7508288;}i:60;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.404484;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7543984;}i:61;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.404762;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7546928;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.405755;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7590784;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.406582;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613744;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.407176;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7616824;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.409196;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7619960;}i:69;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232111335, 1698232111410, 75, 0, 1698232111)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232111.413111;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7770416;}i:70;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232111335, 1698232111410, 75, 0, 1698232111)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232111.42849;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7772944;}}}";s:2:"db";s:24897:"a:1:{s:8:"messages";a:28:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.360255;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6104304;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.361175;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6120136;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.362901;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142952;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.363466;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6145336;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.36941;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477904;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.36988;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484576;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.385655;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983936;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.386211;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987624;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.386333;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6992744;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387061;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005008;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387353;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008088;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387803;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011224;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.387981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7010472;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.388773;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040616;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.38936;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034064;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.389795;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037200;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.390046;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7040184;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.390343;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7046648;}i:57;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.403065;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7506576;}i:58;a:6:{i:0;s:53:"SELECT COUNT(*) FROM `cx_report` WHERE `user_id`='65'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.40345;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:81;s:8:"function";s:5:"count";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7508288;}i:60;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.404484;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7543984;}i:61;a:6:{i:0;s:123:"SELECT `id`, `model_number`, `pdf_path`, `pdf_at`, `step` FROM `cx_report` WHERE `user_id`='65' ORDER BY `id` DESC LIMIT 20";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.404762;i:4;a:2:{i:0;a:5:{s:4:"file";s:60:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\ReportForm.php";s:4:"line";i:83;s:8:"function";s:3:"all";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:71:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\ReportController.php";s:4:"line";i:64;s:8:"function";s:6:"search";s:5:"class";s:33:"app\modules\api\models\ReportForm";s:4:"type";s:2:"->";}}i:5;i:7546928;}i:63;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.405755;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7590784;}i:64;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.406582;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613744;}i:66;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.407176;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7616824;}i:67;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698232111.409196;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7619960;}i:69;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232111335, 1698232111410, 75, 0, 1698232111)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232111.413111;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7770416;}i:70;a:6:{i:0;s:545:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/report/index', 'api', 'report', 'index', '/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'GET', '[]', '127.0.0.1', 1, '2023-10-25', 1698232111335, 1698232111410, 75, 0, 1698232111)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698232111.42849;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7772944;}}}";s:5:"event";s:5665:"a:32:{i:0;a:5:{s:4:"time";d:1698232111.326439;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698232111.331265;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698232111.351906;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698232111.3602;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698232111.36993;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698232111.369989;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698232111.379485;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698232111.379501;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698232111.383896;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698232111.386256;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698232111.38787;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698232111.3879;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698232111.390384;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698232111.390448;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698232111.390796;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698232111.396616;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698232111.398031;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:44:"app\modules\api\controllers\ReportController";}i:17;a:5:{s:4:"time";d:1698232111.401875;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:33:"app\modules\api\models\ReportForm";}i:18;a:5:{s:4:"time";d:1698232111.401964;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:33:"app\modules\api\models\ReportForm";}i:19;a:5:{s:4:"time";d:1698232111.402803;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698232111.405685;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:21;a:5:{s:4:"time";d:1698232111.410454;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:22;a:5:{s:4:"time";d:1698232111.412003;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698232111.412023;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698232111.429259;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698232111.429305;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:44:"app\modules\api\controllers\ReportController";}i:26;a:5:{s:4:"time";d:1698232111.429318;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:27;a:5:{s:4:"time";d:1698232111.429328;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:28;a:5:{s:4:"time";d:1698232111.429342;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:29;a:5:{s:4:"time";d:1698232111.429353;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:30;a:5:{s:4:"time";d:1698232111.432535;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:31;a:5:{s:4:"time";d:1698232111.432612;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698232111.281143;s:3:"end";d:1698232111.436356;s:6:"memory";i:8461368;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1686:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.33182;i:4;a:0:{}i:5;i:4619864;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331836;i:4;a:0:{}i:5;i:4620616;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331845;i:4;a:0:{}i:5;i:4621368;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331853;i:4;a:0:{}i:5;i:4622120;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331861;i:4;a:0:{}i:5;i:4622872;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331871;i:4;a:0:{}i:5;i:4623624;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331879;i:4;a:0:{}i:5;i:4624376;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698232111.331884;i:4;a:0:{}i:5;i:4625392;}}s:5:"route";s:16:"api/report/index";s:6:"action";s:59:"app\modules\api\controllers\ReportController::actionIndex()";}";s:7:"request";s:4884:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:7:{s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=56f1810e3015c2aad479a2fbee75d69902f1ead40f4ed413ba16e20b24d80ecaa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22Klj0yV5EB09KayJGNTF6cg3D2LhhXYS5%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"6538f72f4ebb4";s:16:"X-Debug-Duration";s:3:"152";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=6538f72f4ebb4";s:10:"Set-Cookie";s:204:"_csrf=2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:16:"api/report/index";s:6:"action";s:59:"app\modules\api\controllers\ReportController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:41:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:133:"/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:17:"/api/report/index";s:11:"REMOTE_PORT";s:5:"61763";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=56f1810e3015c2aad479a2fbee75d69902f1ead40f4ed413ba16e20b24d80ecaa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22Klj0yV5EB09KayJGNTF6cg3D2LhhXYS5%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698232111.26471;s:12:"REQUEST_TIME";i:1698232111;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:0:{}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"56f1810e3015c2aad479a2fbee75d69902f1ead40f4ed413ba16e20b24d80ecaa:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"Klj0yV5EB09KayJGNTF6cg3D2LhhXYS5"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"6538f72f4ebb4";s:3:"url";s:150:"http://cxfoot.com/api/report/index?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698232111.26471;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8461368;s:14:"processingTime";d:0.15489697456359863;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a0be4bde12.data b/runtime/debug/653a0be4bde12.data deleted file mode 100644 index 689f963..0000000 --- a/runtime/debug/653a0be4bde12.data +++ /dev/null @@ -1,141 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:7520:"a:1:{s:8:"messages";a:20:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698302948.732753;i:4;a:0:{}i:5;i:2493648;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698302948.732786;i:4;a:0:{}i:5;i:2494824;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698302948.775237;i:4;a:0:{}i:5;i:4070056;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698302948.781441;i:4;a:0:{}i:5;i:4286504;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302948.782307;i:4;a:0:{}i:5;i:4288712;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302948.783048;i:4;a:0:{}i:5;i:4296896;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302948.785496;i:4;a:0:{}i:5;i:4369176;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698302948.785744;i:4;a:0:{}i:5;i:4369520;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698302948.786892;i:4;a:0:{}i:5;i:4393544;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302948.786928;i:4;a:0:{}i:5;i:4399936;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/verify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698302948.790741;i:4;a:0:{}i:5;i:4623168;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698302948.790753;i:4;a:0:{}i:5;i:4624800;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.831073;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6050560;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698302948.831189;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052992;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.837465;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6139304;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.846116;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6475872;}i:32;a:6:{i:0;s:34:"Route to run: api/user/verify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698302948.864015;i:4;a:0:{}i:5;i:6704896;}i:33;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.870812;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6840944;}i:36;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.872708;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6859856;}i:39;a:6:{i:0;s:438:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302948799, 1698302948874, 75, 0, 1698302948)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302948.886005;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7247784;}}}";s:9:"profiling";s:11069:"a:3:{s:6:"memory";i:7373456;s:4:"time";d:0.23236799240112305;s:8:"messages";a:14:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698302948.83121;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054120;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698302948.833942;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103280;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.834036;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103520;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.835469;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119352;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.837537;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142168;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.838347;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144552;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.846182;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477120;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.847053;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6483792;}i:34;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.87085;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6843064;}i:35;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.872247;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6866024;}i:37;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.872737;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6863472;}i:38;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.873306;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6866608;}i:40;a:6:{i:0;s:438:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302948799, 1698302948874, 75, 0, 1698302948)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302948.88609;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7246144;}i:41;a:6:{i:0;s:438:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302948799, 1698302948874, 75, 0, 1698302948)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302948.920951;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7248672;}}}";s:2:"db";s:10266:"a:1:{s:8:"messages";a:12:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.834036;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6103520;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.835469;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6119352;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.837537;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6142168;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.838347;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144552;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.846182;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477120;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.847053;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6483792;}i:34;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.87085;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6843064;}i:35;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.872247;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6866024;}i:37;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.872737;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6863472;}i:38;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302948.873306;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:6866608;}i:40;a:6:{i:0;s:438:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302948799, 1698302948874, 75, 0, 1698302948)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302948.88609;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7246144;}i:41;a:6:{i:0;s:438:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, 0, 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302948799, 1698302948874, 75, 0, 1698302948)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302948.920951;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:59;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7248672;}}}";s:5:"event";s:2992:"a:17:{i:0;a:5:{s:4:"time";d:1698302948.783035;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698302948.789576;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698302948.820638;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698302948.833931;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698302948.847113;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698302948.847185;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698302948.864566;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698302948.864582;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698302948.87074;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:9;a:5:{s:4:"time";d:1698302948.874625;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:10;a:5:{s:4:"time";d:1698302948.884754;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:11;a:5:{s:4:"time";d:1698302948.884778;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:12;a:5:{s:4:"time";d:1698302948.921788;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:13;a:5:{s:4:"time";d:1698302948.92183;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:14;a:5:{s:4:"time";d:1698302948.925362;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:15;a:5:{s:4:"time";d:1698302948.925412;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:16;a:5:{s:4:"time";d:1698302948.925433;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698302948.696335;s:3:"end";d:1698302948.928852;s:6:"memory";i:7373456;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790539;i:4;a:0:{}i:5;i:4617896;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790556;i:4;a:0:{}i:5;i:4618648;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790569;i:4;a:0:{}i:5;i:4619400;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790577;i:4;a:0:{}i:5;i:4620152;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790586;i:4;a:0:{}i:5;i:4620904;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790708;i:4;a:0:{}i:5;i:4621656;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790723;i:4;a:0:{}i:5;i:4622408;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302948.790729;i:4;a:0:{}i:5;i:4623424;}}s:5:"route";s:20:"api/user/verify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionVerifyUser()";}";s:7:"request";s:4137:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:7:{s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:5:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a0be4bde12";s:16:"X-Debug-Duration";s:3:"230";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a0be4bde12";}s:5:"route";s:20:"api/user/verify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionVerifyUser()";s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:40:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:21:"/api/user/verify-user";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:21:"/api/user/verify-user";s:11:"REMOTE_PORT";s:5:"60216";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698302948.651218;s:12:"REQUEST_TIME";i:1698302948;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a0be4bde12";s:3:"url";s:38:"http://cxfoot.com/api/user/verify-user";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698302948.651218;s:10:"statusCode";i:200;s:8:"sqlCount";i:6;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7373456;s:14:"processingTime";d:0.23236799240112305;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a0bffad2a1.data b/runtime/debug/653a0bffad2a1.data deleted file mode 100644 index 0764647..0000000 --- a/runtime/debug/653a0bffad2a1.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15284:"a:1:{s:8:"messages";a:30:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698302975.662676;i:4;a:0:{}i:5;i:2495200;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698302975.662749;i:4;a:0:{}i:5;i:2496376;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698302975.70823;i:4;a:0:{}i:5;i:4071608;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698302975.716068;i:4;a:0:{}i:5;i:4288056;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302975.716648;i:4;a:0:{}i:5;i:4290264;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302975.716868;i:4;a:0:{}i:5;i:4298448;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302975.718866;i:4;a:0:{}i:5;i:4370728;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698302975.719149;i:4;a:0:{}i:5;i:4371072;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698302975.72031;i:4;a:0:{}i:5;i:4395096;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302975.720347;i:4;a:0:{}i:5;i:4401488;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/verify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698302975.723423;i:4;a:0:{}i:5;i:4625040;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698302975.723433;i:4;a:0:{}i:5;i:4626672;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.752117;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6052432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698302975.752164;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6054864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.757215;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6141176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.764431;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6477744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/verify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698302975.781217;i:4;a:0:{}i:5;i:6706728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.791207;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6983384;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.792279;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991640;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.793847;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7005488;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.795043;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009368;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.797036;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7031464;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.798032;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7039448;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698302975.806801;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7279400;}i:52;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698302975.80839;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:56;s:8:"function";s:6:"__call";s:5:"class";s:20:"yii\redis\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7365744;}i:53;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionVerifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698302975.808696;i:4;a:0:{}i:5;i:7361824;}i:54;a:6:{i:0;s:39:"SELECT * FROM `cx_user` WHERE `id`='65'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.80895;i:4;a:1:{i:0;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:53;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:7370480;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.810994;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7419664;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.812774;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7438576;}i:63;a:6:{i:0;s:517:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302975729, 1698302975814, 85, 0, 1698302975)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302975.819862;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7588064;}}}";s:9:"profiling";s:23941:"a:3:{s:6:"memory";i:7759800;s:4:"time";d:0.21867799758911133;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698302975.752183;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698302975.754115;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.754146;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.755527;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.757251;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.75784;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.764475;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6478992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.765169;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.791247;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6984952;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.792189;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988640;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.792317;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6993760;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.793441;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006024;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.793881;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009104;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.794834;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012240;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.795072;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011488;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.796427;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041632;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.797067;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035080;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.797657;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038216;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.79806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041200;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.798565;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047632;}i:55;a:6:{i:0;s:39:"SELECT * FROM `cx_user` WHERE `id`='65'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.808978;i:4;a:1:{i:0;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:53;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:7371904;}i:56;a:6:{i:0;s:39:"SELECT * FROM `cx_user` WHERE `id`='65'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.809417;i:4;a:1:{i:0;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:53;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:7377264;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.81103;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7421784;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.812308;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7444744;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.812803;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7442192;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.81345;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7445328;}i:64;a:6:{i:0;s:517:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302975729, 1698302975814, 85, 0, 1698302975)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302975.819909;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7586424;}i:65;a:6:{i:0;s:517:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302975729, 1698302975814, 85, 0, 1698302975)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302975.844;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7594584;}}}";s:2:"db";s:23137:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.754146;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6105392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.755527;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6121224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.757251;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.75784;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6146424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.764475;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6478992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.765169;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.791247;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6984952;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.792189;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6988640;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.792317;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6993760;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.793441;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7006024;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.793881;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7009104;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.794834;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012240;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.795072;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011488;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.796427;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041632;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.797067;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7035080;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.797657;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7038216;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.79806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041200;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.798565;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7047632;}i:55;a:6:{i:0;s:39:"SELECT * FROM `cx_user` WHERE `id`='65'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.808978;i:4;a:1:{i:0;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:53;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:7371904;}i:56;a:6:{i:0;s:39:"SELECT * FROM `cx_user` WHERE `id`='65'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.809417;i:4;a:1:{i:0;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:53;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:7377264;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.81103;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7421784;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.812308;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7444744;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.812803;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7442192;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698302975.81345;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7445328;}i:64;a:6:{i:0;s:517:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302975729, 1698302975814, 85, 0, 1698302975)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302975.819909;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7586424;}i:65;a:6:{i:0;s:517:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/verify-user', 'api', 'user', 'verify-user', '/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D', 'GET', '[]', '127.0.0.1', 1, '2023-10-26', 1698302975729, 1698302975814, 85, 0, 1698302975)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698302975.844;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7594584;}}}";s:5:"event";s:5607:"a:32:{i:0;a:5:{s:4:"time";d:1698302975.716855;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698302975.722619;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698302975.745524;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698302975.754106;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698302975.765225;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698302975.76529;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698302975.781777;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698302975.781793;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698302975.788806;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698302975.792231;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698302975.79493;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698302975.794971;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698302975.798613;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698302975.798695;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698302975.799446;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698302975.806842;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698302975.808661;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698302975.808736;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698302975.809453;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698302975.809828;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698302975.810921;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:21;a:5:{s:4:"time";d:1698302975.815459;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:22;a:5:{s:4:"time";d:1698302975.818636;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698302975.818661;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698302975.844939;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698302975.844987;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:26;a:5:{s:4:"time";d:1698302975.845001;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:27;a:5:{s:4:"time";d:1698302975.84501;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:28;a:5:{s:4:"time";d:1698302975.845025;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:29;a:5:{s:4:"time";d:1698302975.845037;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:30;a:5:{s:4:"time";d:1698302975.849032;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:31;a:5:{s:4:"time";d:1698302975.849128;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698302975.635163;s:3:"end";d:1698302975.854133;s:6:"memory";i:7759800;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723351;i:4;a:0:{}i:5;i:4619448;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723366;i:4;a:0:{}i:5;i:4620200;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723375;i:4;a:0:{}i:5;i:4620952;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723382;i:4;a:0:{}i:5;i:4621704;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723391;i:4;a:0:{}i:5;i:4622456;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723399;i:4;a:0:{}i:5;i:4623208;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723407;i:4;a:0:{}i:5;i:4623960;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698302975.723412;i:4;a:0:{}i:5;i:4624976;}}s:5:"route";s:20:"api/user/verify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionVerifyUser()";}";s:7:"request";s:4724:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:7:{s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a0bffad2a1";s:16:"X-Debug-Duration";s:3:"215";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a0bffad2a1";s:10:"Set-Cookie";s:204:"_csrf=879e748765623b8a89ae865965fe53befe7192d433f5170ffaee1641a56226c0a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22dJPVwYv0UBBmkB63egOzhvC2x9uLK3-c%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/verify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionVerifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:41:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:97:"/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:12:"QUERY_STRING";s:75:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:75:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:12:"REDIRECT_URL";s:21:"/api/user/verify-user";s:11:"REMOTE_PORT";s:5:"60221";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698302975.596035;s:12:"REQUEST_TIME";i:1698302975;}s:3:"GET";a:1:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";}s:4:"POST";a:0:{}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"2b383a2d14889b31a3bb8f97da113ec3d8a725bbd3384aa24c9bc443574752cfa:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"tiFUxKOl4yzmzGr_F6TZllPs67--S-Xy"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a0bffad2a1";s:3:"url";s:114:"http://cxfoot.com/api/user/verify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698302975.596035;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7759800;s:14:"processingTime";d:0.21867799758911133;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a211734afc.data b/runtime/debug/653a211734afc.data deleted file mode 100644 index feefb58..0000000 --- a/runtime/debug/653a211734afc.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16228:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308375.176416;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308375.176444;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308375.214904;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308375.218997;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308375.220854;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308375.22116;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308375.223686;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308375.223913;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308375.225034;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308375.225068;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308375.228941;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308375.228953;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.262833;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308375.262931;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.270473;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.279813;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308375.298804;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.310423;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.318685;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.32047;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.32158;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.323944;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.324832;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308375.334144;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308375.334217;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.338889;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364296;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308375.34039;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386768;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308375.341695;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:104;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412584;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.343061;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453136;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.344804;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472048;}i:64;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308375234, 1698308375346, 112, 0, 1698308375)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308375.350393;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605832;}}}";s:9:"profiling";s:24694:"a:3:{s:6:"memory";i:7778184;s:4:"time";d:0.2493300437927246;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308375.262951;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308375.265603;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.265664;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.268383;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.270553;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.272288;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.279853;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.281127;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.310463;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.31855;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.318715;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.320067;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.320504;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.321365;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.321608;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.323331;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.323973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.324574;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.324857;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.325435;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.338933;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366128;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.339591;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369568;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.34309;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455256;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.34436;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478216;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.34483;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475664;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.345486;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478800;}i:65;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308375234, 1698308375346, 112, 0, 1698308375)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308375.350429;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609824;}i:66;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308375234, 1698308375346, 112, 0, 1698308375)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308375.37982;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612480;}}}";s:2:"db";s:23891:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.265664;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.268383;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.270553;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.272288;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.279853;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.281127;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.310463;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.31855;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.318715;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.320067;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.320504;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.321365;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.321608;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.323331;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.323973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.324574;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.324857;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.325435;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.338933;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366128;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.339591;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369568;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.34309;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455256;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.34436;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478216;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.34483;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475664;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308375.345486;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478800;}i:65;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308375234, 1698308375346, 112, 0, 1698308375)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308375.350429;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609824;}i:66;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308375234, 1698308375346, 112, 0, 1698308375)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308375.37982;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612480;}}}";s:5:"event";s:6031:"a:34:{i:0;a:5:{s:4:"time";d:1698308375.221146;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308375.227599;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308375.255047;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308375.265595;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308375.281183;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308375.281247;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308375.299393;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308375.299409;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308375.307607;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308375.31862;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308375.321459;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308375.321506;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308375.325479;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308375.32555;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308375.326214;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308375.334175;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308375.334198;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308375.338457;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308375.338628;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308375.338659;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308375.340417;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308375.341859;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308375.343003;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308375.346426;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308375.349152;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308375.349171;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308375.380603;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308375.380648;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308375.380661;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308375.38067;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308375.380685;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308375.380702;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308375.384941;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308375.385032;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698308375.139221;s:3:"end";d:1698308375.38885;s:6:"memory";i:7778184;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228767;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228784;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228793;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228801;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228809;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228908;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228923;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308375.228929;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------241258081841159910491280";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=879e748765623b8a89ae865965fe53befe7192d433f5170ffaee1641a56226c0a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22dJPVwYv0UBBmkB63egOzhvC2x9uLK3-c%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a211734afc";s:16:"X-Debug-Duration";s:3:"247";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a211734afc";s:10:"Set-Cookie";s:204:"_csrf=0674237ad4c4e51b2f081690f8a4e3cdd61a718c65c53fc0c229894234573498a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22r3WB3yo1436fkwt8pgZyZCykhh5liST5%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64135";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------241258081841159910491280";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=879e748765623b8a89ae865965fe53befe7192d433f5170ffaee1641a56226c0a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22dJPVwYv0UBBmkB63egOzhvC2x9uLK3-c%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308375.094926;s:12:"REQUEST_TIME";i:1698308375;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"879e748765623b8a89ae865965fe53befe7192d433f5170ffaee1641a56226c0a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"dJPVwYv0UBBmkB63egOzhvC2x9uLK3-c"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a211734afc";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308375.094926;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778184;s:14:"processingTime";d:0.2493300437927246;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a21674402d.data b/runtime/debug/653a21674402d.data deleted file mode 100644 index 5266bf6..0000000 --- a/runtime/debug/653a21674402d.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16228:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308455.240844;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308455.240872;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308455.27768;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308455.281849;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308455.282452;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308455.28269;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308455.285052;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308455.285291;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308455.286839;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308455.286886;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308455.290816;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308455.290828;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.323049;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308455.323116;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.328539;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.336539;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308455.352859;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.362174;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.363135;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.364248;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.364999;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.36679;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367474;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308455.376338;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308455.376414;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.380574;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308455.381774;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386824;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308455.383018;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:108;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412640;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.384154;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453192;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.392178;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472104;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308455296, 1698308455393, 97, 0, 1698308455)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308455.397284;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605888;}}}";s:9:"profiling";s:24694:"a:3:{s:6:"memory";i:7778240;s:4:"time";d:0.2562601566314697;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308455.323134;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308455.325479;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.325545;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.326845;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.328579;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.329204;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.336594;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.337256;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.362212;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.363047;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.36316;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.363982;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.364274;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.364847;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.365023;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.366187;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.366816;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367239;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367498;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367898;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.380604;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.381082;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.38418;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.391673;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.39221;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.392886;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308455296, 1698308455393, 97, 0, 1698308455)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308455.397318;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308455296, 1698308455393, 97, 0, 1698308455)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308455.458017;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:2:"db";s:23891:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.325545;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.326845;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.328579;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.329204;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.336594;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.337256;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.362212;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.363047;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.36316;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.363982;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.364274;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.364847;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.365023;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.366187;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.366816;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367239;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367498;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.367898;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.380604;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.381082;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.38418;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.391673;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.39221;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308455.392886;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308455296, 1698308455393, 97, 0, 1698308455)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308455.397318;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308455296, 1698308455393, 97, 0, 1698308455)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308455.458017;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:5:"event";s:6033:"a:34:{i:0;a:5:{s:4:"time";d:1698308455.282679;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308455.289622;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308455.31507;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308455.325469;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308455.337314;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308455.337382;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308455.353415;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308455.353431;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308455.359889;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308455.363088;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308455.364914;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308455.364943;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308455.367933;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308455.367998;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308455.368701;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308455.376377;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308455.376396;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308455.380183;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308455.380325;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308455.380354;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308455.381799;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308455.383165;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308455.384107;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308455.393827;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308455.396212;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308455.396232;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308455.458787;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308455.458832;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308455.458845;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308455.458855;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308455.458869;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308455.458886;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308455.462678;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308455.462764;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:89:"a:3:{s:5:"start";d:1698308455.20939;s:3:"end";d:1698308455.46595;s:6:"memory";i:7778240;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290622;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290641;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290653;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290672;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290681;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290784;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290798;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308455.290804;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------777830487929278953758814";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=0674237ad4c4e51b2f081690f8a4e3cdd61a718c65c53fc0c229894234573498a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22r3WB3yo1436fkwt8pgZyZCykhh5liST5%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a21674402d";s:16:"X-Debug-Duration";s:3:"254";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a21674402d";s:10:"Set-Cookie";s:204:"_csrf=f446fc98eff53c3f36f11353064867d68d2a11c38aab0e729b141073f8662892a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22L3FRy1vNf3fu9YybPYn8aiAp3xgrGo6R%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64184";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------777830487929278953758814";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=0674237ad4c4e51b2f081690f8a4e3cdd61a718c65c53fc0c229894234573498a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22r3WB3yo1436fkwt8pgZyZCykhh5liST5%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308455.168505;s:12:"REQUEST_TIME";i:1698308455;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"0674237ad4c4e51b2f081690f8a4e3cdd61a718c65c53fc0c229894234573498a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"r3WB3yo1436fkwt8pgZyZCykhh5liST5"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a21674402d";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308455.168505;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778240;s:14:"processingTime";d:0.2562601566314697;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a2173e258e.data b/runtime/debug/653a2173e258e.data deleted file mode 100644 index b40fcc9..0000000 --- a/runtime/debug/653a2173e258e.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16226:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308467.902521;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308467.90254;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308467.926256;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308467.929371;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308467.929805;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308467.930044;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308467.931541;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308467.931732;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308467.932305;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308467.93234;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308467.934746;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308467.934758;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.955984;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308467.95603;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.961849;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.967072;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308467.978079;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.984315;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.985367;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.986446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.987199;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.988933;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.98962;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308467.995787;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308467.995864;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.998788;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308468.000445;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386824;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308468.001133;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:108;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412640;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.001928;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453192;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.00355;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472104;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308467938, 1698308468004, 66, 0, 1698308468)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308468.007459;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605888;}}}";s:9:"profiling";s:24696:"a:3:{s:6:"memory";i:7778240;s:4:"time";d:0.16196680068969727;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308467.956049;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308467.958246;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.95828;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.960496;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.961885;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.962488;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.967109;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.967889;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.984354;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.985267;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.985394;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.986173;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.986473;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.987034;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.987224;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.988356;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.98896;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.989386;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.989644;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.990075;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.998823;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.999831;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.001957;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.003089;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.003576;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.004082;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308467938, 1698308468004, 66, 0, 1698308468)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308468.007495;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308467938, 1698308468004, 66, 0, 1698308468)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308468.040569;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:2:"db";s:23892:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.95828;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.960496;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.961885;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.962488;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.967109;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.967889;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.984354;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.985267;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.985394;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.986173;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.986473;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.987034;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.987224;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.988356;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.98896;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.989386;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.989644;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.990075;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.998823;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308467.999831;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.001957;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.003089;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.003576;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308468.004082;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308467938, 1698308468004, 66, 0, 1698308468)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308468.007495;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308467938, 1698308468004, 66, 0, 1698308468)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308468.040569;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:5:"event";s:6033:"a:34:{i:0;a:5:{s:4:"time";d:1698308467.930031;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308467.934113;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308467.951149;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308467.958237;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308467.967949;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308467.968017;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308467.978443;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308467.978459;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308467.982244;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308467.985315;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308467.987106;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308467.987141;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308467.990112;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308467.990176;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308467.990551;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308467.995826;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308467.995845;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308467.998285;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308467.998386;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308467.998414;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308468.000477;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308468.001292;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308468.001868;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308468.004749;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308468.006585;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308468.006603;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308468.041135;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308468.04118;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308468.041193;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308468.041203;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308468.041217;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308468.041236;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308468.044045;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308468.044122;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698308467.884565;s:3:"end";d:1698308468.04683;s:6:"memory";i:7778240;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934671;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934688;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934697;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934705;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934713;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934722;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.93473;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308467.934735;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5295:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------674706553084107315866162";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=f446fc98eff53c3f36f11353064867d68d2a11c38aab0e729b141073f8662892a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22L3FRy1vNf3fu9YybPYn8aiAp3xgrGo6R%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a2173e258e";s:16:"X-Debug-Duration";s:3:"160";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a2173e258e";s:10:"Set-Cookie";s:204:"_csrf=403711ea2fb696dd3ad6107413322383501bab2ffc19b12a96ffd783a7fc0280a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%2246vMoE3DjUbjNiaVVrDksqUIbpdbuyrc%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64190";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------674706553084107315866162";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=f446fc98eff53c3f36f11353064867d68d2a11c38aab0e729b141073f8662892a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22L3FRy1vNf3fu9YybPYn8aiAp3xgrGo6R%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308467.86857;s:12:"REQUEST_TIME";i:1698308467;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"f446fc98eff53c3f36f11353064867d68d2a11c38aab0e729b141073f8662892a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"L3FRy1vNf3fu9YybPYn8aiAp3xgrGo6R"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a2173e258e";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308467.86857;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778240;s:14:"processingTime";d:0.16196680068969727;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a217ccd515.data b/runtime/debug/653a217ccd515.data deleted file mode 100644 index aa0dc11..0000000 --- a/runtime/debug/653a217ccd515.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16225:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308476.807191;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308476.807218;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308476.840126;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308476.845273;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308476.845971;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308476.846197;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308476.848048;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308476.848314;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308476.848943;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308476.84899;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308476.851607;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308476.85162;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.872593;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308476.872644;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.878851;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.884488;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308476.894683;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.900553;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.901527;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.902749;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.903489;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.905414;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906321;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308476.913401;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308476.91351;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.9166;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308476.917799;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386824;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308476.918488;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:108;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412640;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.91933;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453192;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.921034;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472104;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308476854, 1698308476922, 68, 0, 1698308476)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308476.926445;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605888;}}}";s:9:"profiling";s:24696:"a:3:{s:6:"memory";i:7778240;s:4:"time";d:0.17960500717163086;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308476.872662;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308476.874832;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.874911;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.877438;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.878893;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.879703;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.884532;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.885364;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.900595;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.901419;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.901554;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.902465;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.902777;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.903312;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.903515;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.904769;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.905445;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906011;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906346;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906817;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.916637;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.917229;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.919363;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.920558;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.921064;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.92162;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308476854, 1698308476922, 68, 0, 1698308476)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308476.926497;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308476854, 1698308476922, 68, 0, 1698308476)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308476.95697;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:2:"db";s:23892:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.874911;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.877438;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.878893;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.879703;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.884532;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.885364;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.900595;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.901419;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.901554;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.902465;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.902777;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.903312;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.903515;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.904769;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.905445;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906011;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906346;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.906817;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.916637;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.917229;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.919363;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.920558;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.921064;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308476.92162;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308476854, 1698308476922, 68, 0, 1698308476)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308476.926497;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308476854, 1698308476922, 68, 0, 1698308476)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308476.95697;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:5:"event";s:6029:"a:34:{i:0;a:5:{s:4:"time";d:1698308476.846185;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308476.850914;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308476.86783;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308476.874685;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308476.885425;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308476.885499;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308476.895055;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308476.895071;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308476.898866;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308476.901472;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308476.90339;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308476.903427;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308476.906863;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308476.906938;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308476.907477;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308476.913471;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308476.913491;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308476.916226;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308476.916334;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308476.916364;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308476.917828;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308476.91866;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308476.919263;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308476.92247;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308476.924374;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308476.924395;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308476.957542;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308476.957587;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308476.957601;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308476.95761;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308476.957625;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308476.957642;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308476.961433;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308476.961517;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308476.784691;s:3:"end";d:1698308476.964594;s:6:"memory";i:7778240;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851527;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851545;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851555;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851563;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851572;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851581;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.85159;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308476.851596;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------674041708420035109096409";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=403711ea2fb696dd3ad6107413322383501bab2ffc19b12a96ffd783a7fc0280a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%2246vMoE3DjUbjNiaVVrDksqUIbpdbuyrc%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a217ccd515";s:16:"X-Debug-Duration";s:3:"178";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a217ccd515";s:10:"Set-Cookie";s:204:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64201";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------674041708420035109096409";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=403711ea2fb696dd3ad6107413322383501bab2ffc19b12a96ffd783a7fc0280a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%2246vMoE3DjUbjNiaVVrDksqUIbpdbuyrc%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308476.768723;s:12:"REQUEST_TIME";i:1698308476;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"403711ea2fb696dd3ad6107413322383501bab2ffc19b12a96ffd783a7fc0280a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"46vMoE3DjUbjNiaVVrDksqUIbpdbuyrc"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a217ccd515";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308476.768723;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778240;s:14:"processingTime";d:0.17960500717163086;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a219650fa2.data b/runtime/debug/653a219650fa2.data deleted file mode 100644 index ab1a3ed..0000000 --- a/runtime/debug/653a219650fa2.data +++ /dev/null @@ -1,211 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:11010:"a:1:{s:8:"messages";a:25:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308502.30393;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308502.303951;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308502.330836;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308502.33414;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308502.33471;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308502.335033;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308502.336907;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308502.337188;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308502.337819;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308502.337855;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308502.341466;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308502.341479;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.366932;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308502.366982;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.371303;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.377222;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308502.385936;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.393393;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.394251;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.39539;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.396101;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.398028;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.398931;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308502.404719;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308502.404788;i:4;a:0:{}i:5;i:7280040;}}}";s:9:"profiling";s:16501:"a:3:{s:6:"memory";i:7389792;s:4:"time";d:0.1253809928894043;s:8:"messages";a:20:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308502.367;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308502.369037;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.369066;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.3701;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.371336;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.371875;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.377265;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.377905;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.393433;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.394148;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.394278;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.395099;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.395418;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.395919;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.396126;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.397406;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.39806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.398653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.398958;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.399457;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}}}";s:2:"db";s:15701:"a:1:{s:8:"messages";a:18:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.369066;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.3701;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.371336;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.371875;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.377265;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.377905;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.393433;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.394148;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.394278;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.395099;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.395418;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.395919;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.396126;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.397406;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.39806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.398653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.398958;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308502.399457;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}}}";s:5:"event";s:2955:"a:17:{i:0;a:5:{s:4:"time";d:1698308502.335019;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308502.340799;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308502.362007;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308502.369029;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308502.377965;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308502.378035;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308502.386306;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308502.386322;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308502.391797;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308502.394197;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308502.395996;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308502.396032;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308502.399508;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308502.399586;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308502.400091;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308502.404752;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308502.404769;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308502.285042;s:3:"end";d:1698308502.410624;s:6:"memory";i:7389792;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341387;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341407;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341416;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341424;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341432;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341441;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.34145;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308502.341455;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------296934583483707050226116";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64214";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------296934583483707050226116";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308502.269266;s:12:"REQUEST_TIME";i:1698308502;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a219650fa2";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308502.269266;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7389792;s:14:"processingTime";d:0.1253809928894043;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a21a06fbfa.data b/runtime/debug/653a21a06fbfa.data deleted file mode 100644 index 5d99cb1..0000000 --- a/runtime/debug/653a21a06fbfa.data +++ /dev/null @@ -1,211 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:11609:"a:1:{s:8:"messages";a:26:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308512.421233;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308512.421254;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308512.456593;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308512.462954;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308512.463424;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308512.463687;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308512.465766;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308512.465995;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308512.467149;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308512.467197;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308512.470285;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308512.470296;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.498547;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308512.498601;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.503306;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.510675;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308512.526968;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.536325;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.537201;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538492;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.539157;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.540845;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.541794;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308512.55049;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308512.550564;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.554832;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}}}";s:9:"profiling";s:17701:"a:3:{s:6:"memory";i:7389792;s:4:"time";d:0.16474294662475586;s:8:"messages";a:22:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308512.498619;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308512.500394;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.500431;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.50165;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.503343;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.504006;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.510721;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.511387;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.536365;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.537081;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.537229;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538215;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538519;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538988;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.539182;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.540267;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.540872;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.541491;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.541823;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.542315;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.554864;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.555355;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}}}";s:2:"db";s:16897:"a:1:{s:8:"messages";a:20:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.500431;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.50165;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.503343;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.504006;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.510721;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.511387;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.536365;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.537081;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.537229;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538215;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538519;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.538988;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.539182;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.540267;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.540872;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.541491;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.541823;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.542315;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.554864;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308512.555355;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}}}";s:5:"event";s:3516:"a:20:{i:0;a:5:{s:4:"time";d:1698308512.463675;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308512.469437;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308512.492361;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308512.500384;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308512.511447;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308512.511518;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308512.527516;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308512.527531;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308512.533927;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308512.537148;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308512.539061;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308512.539097;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308512.542401;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308512.54248;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308512.543202;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308512.550527;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308512.550546;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308512.554471;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308512.554572;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308512.554599;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308512.393464;s:3:"end";d:1698308512.558453;s:6:"memory";i:7389792;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470211;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470226;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470235;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470243;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470251;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.47026;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470268;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308512.470274;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------389783714004228384895433";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64221";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------389783714004228384895433";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308512.357715;s:12:"REQUEST_TIME";i:1698308512;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a21a06fbfa";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308512.357715;s:10:"statusCode";i:200;s:8:"sqlCount";i:10;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7389792;s:14:"processingTime";d:0.16474294662475586;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a21a9ee801.data b/runtime/debug/653a21a9ee801.data deleted file mode 100644 index 2a01d62..0000000 --- a/runtime/debug/653a21a9ee801.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16226:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308521.950334;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308521.950357;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308521.973545;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308521.979431;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308521.980456;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308521.9807;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308521.982823;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308521.983105;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308521.983715;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308521.983751;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308521.98628;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308521.986292;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.00659;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308522.006643;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.011521;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.017884;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308522.029007;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.035693;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.036886;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.038433;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.039219;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.04104;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.042201;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308522.049035;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308522.049159;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.052469;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308522.054004;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386824;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308522.054796;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:108;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412640;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.055708;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453192;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.057668;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472104;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308521989, 1698308522059, 70, 0, 1698308522)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308522.062688;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605888;}}}";s:9:"profiling";s:24695:"a:3:{s:6:"memory";i:7778240;s:4:"time";d:0.16712713241577148;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308522.006662;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308522.008736;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.008796;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.010127;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.01156;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.012227;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.017936;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.018687;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.035742;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.036757;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.036916;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.038087;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.038465;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.039025;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.039245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.040413;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.041073;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.041733;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.042232;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.042781;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.052509;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.053278;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.055743;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.057182;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.0577;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.058415;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308521989, 1698308522059, 70, 0, 1698308522)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308522.062738;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308521989, 1698308522059, 70, 0, 1698308522)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308522.091151;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:2:"db";s:23891:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.008796;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.010127;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.01156;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.012227;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.017936;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.018687;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.035742;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.036757;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.036916;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.038087;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.038465;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.039025;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.039245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.040413;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.041073;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.041733;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.042232;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.042781;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.052509;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.053278;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.055743;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.057182;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.0577;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308522.058415;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308521989, 1698308522059, 70, 0, 1698308522)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308522.062738;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308521989, 1698308522059, 70, 0, 1698308522)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308522.091151;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:5:"event";s:6029:"a:34:{i:0;a:5:{s:4:"time";d:1698308521.980686;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308521.9856;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308522.001909;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308522.008726;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308522.01875;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308522.018826;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308522.029402;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308522.029419;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308522.033907;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308522.036822;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308522.039113;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308522.039154;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308522.042833;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308522.042917;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308522.043494;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308522.049084;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308522.049136;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308522.051868;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308522.05198;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308522.052012;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308522.054042;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308522.054963;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308522.055635;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308522.059604;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308522.06169;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308522.061713;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308522.092056;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308522.092124;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308522.092138;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308522.092148;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308522.092163;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308522.092181;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308522.095146;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308522.095232;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308521.930707;s:3:"end";d:1698308522.098145;s:6:"memory";i:7778240;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1692:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.986203;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.98622;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.98623;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.986238;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.986245;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.986254;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.986263;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308521.986268;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------529774605658391011932677";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a21a9ee801";s:16:"X-Debug-Duration";s:3:"165";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a21a9ee801";s:10:"Set-Cookie";s:204:"_csrf=df58d0fcb4de2c8f147bd5dc333857443895b84b3a3f756fcb9b23d589272b22a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22PGnSL9FcEXT9AjfMFdoBmM3QGg2FRxwi%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64232";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------529774605658391011932677";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308521.914194;s:12:"REQUEST_TIME";i:1698308521;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"cc1ae2a8fb3562d0939bb6172d01a849014178196b76b18564111d30ee3cb580a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"tLbZgoaj3C-2nrKHP7bn6b5Tb7ph8pRk"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a21a9ee801";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308521.914194;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778240;s:14:"processingTime";d:0.16712713241577148;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a21b4b2adb.data b/runtime/debug/653a21b4b2adb.data deleted file mode 100644 index 2bcab38..0000000 --- a/runtime/debug/653a21b4b2adb.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16224:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308532.701597;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308532.701623;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308532.72818;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308532.734234;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308532.734721;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308532.734997;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308532.736681;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308532.737008;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308532.73765;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308532.737687;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308532.740214;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308532.740226;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.76078;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308532.76083;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.766227;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.77182;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308532.781681;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.787802;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.788681;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.789946;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.79071;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.792639;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.793513;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308532.799961;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308532.800043;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.802966;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308532.804279;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386824;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308532.805559;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:108;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412640;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.806819;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453192;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.80864;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472104;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308532743, 1698308532810, 67, 0, 1698308532)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308532.814259;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605888;}}}";s:9:"profiling";s:24696:"a:3:{s:6:"memory";i:7778240;s:4:"time";d:0.1774768829345703;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308532.760848;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308532.763247;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.763292;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.764846;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.766267;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.767035;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.771864;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.772623;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.787843;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.788579;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.788707;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.789653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.789975;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.790499;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.790737;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.791985;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.79267;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.793232;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.793538;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.794025;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.803003;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.803498;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.806854;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.808168;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.808669;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.809224;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308532743, 1698308532810, 67, 0, 1698308532)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308532.814307;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308532743, 1698308532810, 67, 0, 1698308532)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308532.846047;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:2:"db";s:23893:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.763292;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.764846;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.766267;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.767035;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.771864;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.772623;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.787843;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.788579;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.788707;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.789653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.789975;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.790499;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.790737;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.791985;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.79267;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.793232;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.793538;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.794025;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.803003;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.803498;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.806854;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.808168;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.808669;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308532.809224;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308532743, 1698308532810, 67, 0, 1698308532)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308532.814307;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308532743, 1698308532810, 67, 0, 1698308532)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308532.846047;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:5:"event";s:6029:"a:34:{i:0;a:5:{s:4:"time";d:1698308532.734982;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308532.739561;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308532.756076;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308532.763235;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308532.77268;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308532.772749;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308532.782059;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308532.782074;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308532.786209;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308532.788628;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308532.790599;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308532.790636;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308532.7941;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308532.794175;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308532.79468;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308532.800004;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308532.800023;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308532.80259;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308532.802696;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308532.802725;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308532.804308;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308532.805777;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308532.806744;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308532.810259;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308532.813052;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308532.813076;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308532.847397;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308532.847488;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308532.847504;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308532.847514;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308532.847529;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308532.847547;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308532.851622;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308532.851704;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308532.676764;s:3:"end";d:1698308532.854539;s:6:"memory";i:7778240;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740135;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740152;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740162;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.74017;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740179;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740188;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740197;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308532.740202;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------234073792385725269356845";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=df58d0fcb4de2c8f147bd5dc333857443895b84b3a3f756fcb9b23d589272b22a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22PGnSL9FcEXT9AjfMFdoBmM3QGg2FRxwi%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a21b4b2adb";s:16:"X-Debug-Duration";s:3:"176";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a21b4b2adb";s:10:"Set-Cookie";s:204:"_csrf=cdd4398fc33950f8ad0baa74c8f935550485bac1a4f040ae2ce5375a9af0d01ea%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22cSLP4VGmYKhvFJvPcj5bs1Zb98-sizCg%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64239";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------234073792385725269356845";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=df58d0fcb4de2c8f147bd5dc333857443895b84b3a3f756fcb9b23d589272b22a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22PGnSL9FcEXT9AjfMFdoBmM3QGg2FRxwi%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308532.659588;s:12:"REQUEST_TIME";i:1698308532;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"df58d0fcb4de2c8f147bd5dc333857443895b84b3a3f756fcb9b23d589272b22a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"PGnSL9FcEXT9AjfMFdoBmM3QGg2FRxwi"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a21b4b2adb";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308532.659588;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778240;s:14:"processingTime";d:0.1774768829345703;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a21c1526e1.data b/runtime/debug/653a21c1526e1.data deleted file mode 100644 index d97f314..0000000 --- a/runtime/debug/653a21c1526e1.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16230:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308545.313767;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308545.313792;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308545.336709;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308545.340086;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308545.340623;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308545.340849;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308545.342535;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308545.342783;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308545.343377;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308545.343413;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308545.345925;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308545.345937;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.367072;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308545.36712;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.372292;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.379394;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308545.390164;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.395874;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.396829;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.397911;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.398623;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400228;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308545.407874;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308545.407957;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.410816;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7364352;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308545.411947;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7386824;}i:57;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308545.412658;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7412640;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.413472;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7453192;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.415061;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7472104;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308545349, 1698308545416, 67, 0, 1698308545)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308545.419586;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7605888;}}}";s:9:"profiling";s:24694:"a:3:{s:6:"memory";i:7778240;s:4:"time";d:0.16800999641418457;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308545.367138;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308545.369015;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.369086;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.37079;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.372331;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.372994;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.379443;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.380226;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.395913;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.39673;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.396857;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.39764;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.397938;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.398464;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.398648;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.399658;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400254;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400709;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.401378;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.410852;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.411399;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.413502;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.414571;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.415088;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.415627;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308545349, 1698308545416, 67, 0, 1698308545)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308545.41963;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308545349, 1698308545416, 67, 0, 1698308545)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308545.456303;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:2:"db";s:23890:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.369086;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.37079;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.372331;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.372994;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.379443;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.380226;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.395913;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.39673;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.396857;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.39764;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.397938;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.398464;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.398648;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.399658;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400254;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400709;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.400973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.401378;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.410852;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7366184;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.411399;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7369624;}i:59;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.413502;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7455312;}i:60;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.414571;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478272;}i:62;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.415088;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7475720;}i:63;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308545.415627;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7478856;}i:65;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308545349, 1698308545416, 67, 0, 1698308545)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308545.41963;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7609880;}i:66;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308545349, 1698308545416, 67, 0, 1698308545)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308545.456303;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7612536;}}}";s:5:"event";s:6031:"a:34:{i:0;a:5:{s:4:"time";d:1698308545.340836;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308545.345274;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308545.362413;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308545.369005;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308545.380288;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308545.380358;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308545.390533;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308545.390549;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308545.39427;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308545.396777;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308545.398533;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308545.398566;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308545.401418;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308545.401487;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308545.401898;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308545.407918;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308545.407937;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308545.41045;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308545.410554;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308545.410582;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308545.411974;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308545.412828;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:22;a:5:{s:4:"time";d:1698308545.413415;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:23;a:5:{s:4:"time";d:1698308545.416294;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:24;a:5:{s:4:"time";d:1698308545.418178;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698308545.418198;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698308545.45687;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698308545.456914;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:28;a:5:{s:4:"time";d:1698308545.456927;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:29;a:5:{s:4:"time";d:1698308545.456937;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:30;a:5:{s:4:"time";d:1698308545.456951;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:31;a:5:{s:4:"time";d:1698308545.456969;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:32;a:5:{s:4:"time";d:1698308545.459667;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:33;a:5:{s:4:"time";d:1698308545.459743;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308545.294038;s:3:"end";d:1698308545.462345;s:6:"memory";i:7778240;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1692:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345847;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345865;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345875;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345882;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345891;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.3459;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345909;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308545.345914;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------008851766223502086047037";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=cdd4398fc33950f8ad0baa74c8f935550485bac1a4f040ae2ce5375a9af0d01ea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22cSLP4VGmYKhvFJvPcj5bs1Zb98-sizCg%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a21c1526e1";s:16:"X-Debug-Duration";s:3:"167";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a21c1526e1";s:10:"Set-Cookie";s:204:"_csrf=2ac1dc1c0086f478a193d3aaf06c1b2e3ce6c91d09d4df0d06caccb347bfc7dda%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22uk3HUj5yXQo0OXoiIxuG69zI-rdstUfZ%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64254";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------008851766223502086047037";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=cdd4398fc33950f8ad0baa74c8f935550485bac1a4f040ae2ce5375a9af0d01ea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22cSLP4VGmYKhvFJvPcj5bs1Zb98-sizCg%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308545.278469;s:12:"REQUEST_TIME";i:1698308545;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"cdd4398fc33950f8ad0baa74c8f935550485bac1a4f040ae2ce5375a9af0d01ea:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"cSLP4VGmYKhvFJvPcj5bs1Zb98-sizCg"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a21c1526e1";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308545.278469;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7778240;s:14:"processingTime";d:0.16800999641418457;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a21fadf859.data b/runtime/debug/653a21fadf859.data deleted file mode 100644 index 3a86054..0000000 --- a/runtime/debug/653a21fadf859.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22492:"a:1:{s:8:"messages";a:40:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308602.890344;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308602.890362;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308602.914688;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308602.917833;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.918255;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.918515;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.919963;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308602.920139;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308602.920689;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.920723;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308602.923159;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308602.92317;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.944025;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308602.94408;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.948671;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.953659;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308602.963011;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.968619;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.96949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.970688;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.971468;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973138;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973848;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308602.979728;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308602.979803;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.982572;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7368448;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308602.983611;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7390920;}i:57;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.98455;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7413928;}i:58;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.985996;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7420952;}i:59;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.986191;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7423208;}i:60;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.986383;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7425912;}i:61;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.986546;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7428168;}i:62;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Udo3Hb')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.986804;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7431640;}i:65;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308602.987253;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7440632;}i:66;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Udo3Hb')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.837576;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7577432;}i:69;a:6:{i:0;s:43:"Model not inserted due to validation error.";i:1;i:4;i:2;s:27:"yii\db\ActiveRecord::insert";i:3;d:1698308603.838106;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7568704;}i:70;a:6:{i:0;s:21:"Roll back transaction";i:1;i:8;i:2;s:28:"yii\db\Transaction::rollBack";i:3;d:1698308603.838129;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:95;s:8:"function";s:8:"rollBack";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7569832;}i:71;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.838937;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611656;}i:74;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.8404;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7630568;}i:77;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308602927, 1698308603841, 914, 0, 1698308603)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308603.842814;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7768408;}}}";s:9:"profiling";s:27462:"a:3:{s:6:"memory";i:8457432;s:4:"time";d:1.013174057006836;s:8:"messages";a:32:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308602.944104;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308602.946149;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.946187;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.947386;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.948707;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.949222;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.953687;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.954176;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.968653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.969394;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.96954;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.970376;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.970717;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.97125;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.971496;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.972542;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973164;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973603;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973872;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.974256;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.982602;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370280;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.983079;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7373720;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Udo3Hb')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.986831;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7433872;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Udo3Hb')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.987205;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7436088;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Udo3Hb')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.837618;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7579304;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Udo3Hb')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.838049;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7581144;}i:72;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.838963;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613776;}i:73;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.839949;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7636736;}i:75;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.840425;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7634184;}i:76;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.840957;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7637320;}i:78;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308602927, 1698308603841, 914, 0, 1698308603)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308603.842844;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7766768;}i:79;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308602927, 1698308603841, 914, 0, 1698308603)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308603.878235;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7769424;}}}";s:2:"db";s:26660:"a:1:{s:8:"messages";a:30:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.946187;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.947386;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.948707;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.949222;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.953687;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.954176;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.968653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.969394;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.96954;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.970376;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.970717;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.97125;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.971496;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.972542;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973164;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973603;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.973872;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.974256;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.982602;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370280;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.983079;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7373720;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Udo3Hb')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.986831;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7433872;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Udo3Hb')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308602.987205;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7436088;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Udo3Hb')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.837618;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7579304;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Udo3Hb')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.838049;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7581144;}i:72;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.838963;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7613776;}i:73;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.839949;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7636736;}i:75;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.840425;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7634184;}i:76;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308603.840957;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7637320;}i:78;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308602927, 1698308603841, 914, 0, 1698308603)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308603.842844;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7766768;}i:79;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308602927, 1698308603841, 914, 0, 1698308603)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308603.878235;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7769424;}}}";s:5:"event";s:7041:"a:40:{i:0;a:5:{s:4:"time";d:1698308602.918502;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308602.922438;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308602.939012;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308602.94614;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308602.954226;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308602.954283;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308602.963375;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308602.96339;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308602.96706;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308602.969435;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308602.971338;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308602.971375;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308602.974294;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308602.974366;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308602.974771;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308602.979766;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308602.979784;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308602.982226;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308602.982324;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308602.98235;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308602.983637;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308602.983787;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698308602.98671;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:23;a:5:{s:4:"time";d:1698308603.833869;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:24;a:5:{s:4:"time";d:1698308603.837405;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698308603.837454;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:26;a:5:{s:4:"time";d:1698308603.838097;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698308603.838295;s:4:"name";s:19:"rollbackTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:28;a:5:{s:4:"time";d:1698308603.838889;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698308603.841601;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:30;a:5:{s:4:"time";d:1698308603.841951;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:31;a:5:{s:4:"time";d:1698308603.841969;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:32;a:5:{s:4:"time";d:1698308603.879092;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:33;a:5:{s:4:"time";d:1698308603.879147;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:34;a:5:{s:4:"time";d:1698308603.879161;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:35;a:5:{s:4:"time";d:1698308603.87917;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:36;a:5:{s:4:"time";d:1698308603.879186;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:37;a:5:{s:4:"time";d:1698308603.879197;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:38;a:5:{s:4:"time";d:1698308603.882129;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:39;a:5:{s:4:"time";d:1698308603.882209;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308602.871842;s:3:"end";d:1698308603.885365;s:6:"memory";i:8457432;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923052;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923079;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923089;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923097;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923105;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923113;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923133;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308602.923146;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------989864646229526608708738";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=2ac1dc1c0086f478a193d3aaf06c1b2e3ce6c91d09d4df0d06caccb347bfc7dda:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22uk3HUj5yXQo0OXoiIxuG69zI-rdstUfZ%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a21fadf859";s:16:"X-Debug-Duration";s:5:"1,011";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a21fadf859";s:10:"Set-Cookie";s:204:"_csrf=b2f5cd4fb4df954ad98f0ceb76d26d46e714a3cfc60bd7283ae4df31791183e9a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22SsnNx6xCxHksuYZSD_1Of-91qAK54ctX%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64283";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------989864646229526608708738";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=2ac1dc1c0086f478a193d3aaf06c1b2e3ce6c91d09d4df0d06caccb347bfc7dda:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22uk3HUj5yXQo0OXoiIxuG69zI-rdstUfZ%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308602.855345;s:12:"REQUEST_TIME";i:1698308602;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"2ac1dc1c0086f478a193d3aaf06c1b2e3ce6c91d09d4df0d06caccb347bfc7dda:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"uk3HUj5yXQo0OXoiIxuG69zI-rdstUfZ"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a21fadf859";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308602.855345;s:10:"statusCode";i:200;s:8:"sqlCount";i:15;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8457432;s:14:"processingTime";d:1.013174057006836;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a2231655f1.data b/runtime/debug/653a2231655f1.data deleted file mode 100644 index 61d95f8..0000000 --- a/runtime/debug/653a2231655f1.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22934:"a:1:{s:8:"messages";a:40:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308657.382817;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308657.382839;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308657.414309;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698308657.418036;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.418532;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.418813;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.420761;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308657.421269;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698308657.422851;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.422986;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698308657.426373;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698308657.426386;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.452827;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308657.452874;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.45766;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.464606;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698308657.480965;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.491163;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.492017;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.493259;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.494289;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496149;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496902;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698308657.505242;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698308657.505317;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.509365;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7368448;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698308657.510796;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7390920;}i:57;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.511755;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7413928;}i:58;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.512937;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7420952;}i:59;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.513108;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7423208;}i:60;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.513293;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7425912;}i:61;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.513457;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7428168;}i:62;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U2UiNz')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.513721;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7431640;}i:65;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698308657.514104;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7440632;}i:66;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U2UiNz')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.381085;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7576488;}i:69;a:6:{i:0;s:491:"INSERT INTO `cx_user` (`real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES ('王五', '18222222222', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'gY6EaWTmck5KWQq9qYblj-0ckQKn3KRI', 0, 'U2UiNz', '$2y$13$oB5p7Pz3xIO1pY12PNG2suAzKiNAaPjZiDBFw8HiknN89wQL4wyZa', 'hNq4Qy6fgqthIdC4VG5g26bDHadhTx6O', '', 1698308658, 1698308658, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.453623;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9469952;}i:72;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698308658.45563;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:98;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9468088;}i:73;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.475766;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9507768;}i:76;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.477318;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9526680;}i:79;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308657431, 1698308658478, 1047, 0, 1698308658)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.48046;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9600264;}}}";s:9:"profiling";s:29526:"a:3:{s:6:"memory";i:9764224;s:4:"time";d:1.1559460163116455;s:8:"messages";a:34:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308657.452892;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698308657.454568;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.454679;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.45599;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.457698;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.458257;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.464647;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.465272;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.491202;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.491926;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.492042;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.492977;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.493287;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.494086;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.494316;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.495513;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496178;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496655;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496926;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.497289;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.509397;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370280;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.509893;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7373720;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U2UiNz')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.513749;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7433872;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U2UiNz')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.514058;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7436088;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U2UiNz')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.381128;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7578360;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U2UiNz')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.381568;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7580200;}i:70;a:6:{i:0;s:491:"INSERT INTO `cx_user` (`real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES ('王五', '18222222222', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'gY6EaWTmck5KWQq9qYblj-0ckQKn3KRI', 0, 'U2UiNz', '$2y$13$oB5p7Pz3xIO1pY12PNG2suAzKiNAaPjZiDBFw8HiknN89wQL4wyZa', 'hNq4Qy6fgqthIdC4VG5g26bDHadhTx6O', '', 1698308658, 1698308658, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.453696;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9468136;}i:71;a:6:{i:0;s:491:"INSERT INTO `cx_user` (`real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES ('王五', '18222222222', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'gY6EaWTmck5KWQq9qYblj-0ckQKn3KRI', 0, 'U2UiNz', '$2y$13$oB5p7Pz3xIO1pY12PNG2suAzKiNAaPjZiDBFw8HiknN89wQL4wyZa', 'hNq4Qy6fgqthIdC4VG5g26bDHadhTx6O', '', 1698308658, 1698308658, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.454911;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9470288;}i:74;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.475804;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9509888;}i:75;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.476859;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9532848;}i:77;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.477344;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9530296;}i:78;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.477857;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9533432;}i:80;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308657431, 1698308658478, 1047, 0, 1698308658)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.480504;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9598624;}i:81;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308657431, 1698308658478, 1047, 0, 1698308658)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.504652;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9601280;}}}";s:2:"db";s:28723:"a:1:{s:8:"messages";a:32:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.454679;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.45599;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.457698;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.458257;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.464647;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.465272;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.491202;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.491926;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.492042;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.492977;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.493287;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.494086;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.494316;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.495513;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496178;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496655;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.496926;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.497289;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.509397;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370280;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.509893;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:69;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7373720;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U2UiNz')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.513749;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7433872;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U2UiNz')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308657.514058;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7436088;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U2UiNz')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.381128;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7578360;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U2UiNz')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.381568;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7580200;}i:70;a:6:{i:0;s:491:"INSERT INTO `cx_user` (`real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES ('王五', '18222222222', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'gY6EaWTmck5KWQq9qYblj-0ckQKn3KRI', 0, 'U2UiNz', '$2y$13$oB5p7Pz3xIO1pY12PNG2suAzKiNAaPjZiDBFw8HiknN89wQL4wyZa', 'hNq4Qy6fgqthIdC4VG5g26bDHadhTx6O', '', 1698308658, 1698308658, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.453696;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9468136;}i:71;a:6:{i:0;s:491:"INSERT INTO `cx_user` (`real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES ('王五', '18222222222', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'gY6EaWTmck5KWQq9qYblj-0ckQKn3KRI', 0, 'U2UiNz', '$2y$13$oB5p7Pz3xIO1pY12PNG2suAzKiNAaPjZiDBFw8HiknN89wQL4wyZa', 'hNq4Qy6fgqthIdC4VG5g26bDHadhTx6O', '', 1698308658, 1698308658, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.454911;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:94;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9470288;}i:74;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.475804;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9509888;}i:75;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.476859;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9532848;}i:77;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.477344;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9530296;}i:78;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698308658.477857;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9533432;}i:80;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308657431, 1698308658478, 1047, 0, 1698308658)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.480504;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9598624;}i:81;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698308657431, 1698308658478, 1047, 0, 1698308658)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698308658.504652;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9601280;}}}";s:5:"event";s:7394:"a:42:{i:0;a:5:{s:4:"time";d:1698308657.418801;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698308657.425552;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698308657.447121;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698308657.454559;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698308657.465324;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698308657.465431;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698308657.481603;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698308657.481619;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698308657.488869;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698308657.491969;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698308657.494183;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698308657.494221;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698308657.497329;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698308657.497395;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698308657.49805;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698308657.505279;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698308657.505297;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698308657.509003;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698308657.509105;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698308657.509133;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698308657.510826;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698308657.510992;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698308657.513616;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:23;a:5:{s:4:"time";d:1698308658.375416;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:24;a:5:{s:4:"time";d:1698308658.380909;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698308658.38096;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:26;a:5:{s:4:"time";d:1698308658.38161;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698308658.381631;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:28;a:5:{s:4:"time";d:1698308658.455614;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:29;a:5:{s:4:"time";d:1698308658.474571;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698308658.475697;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:31;a:5:{s:4:"time";d:1698308658.478805;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:32;a:5:{s:4:"time";d:1698308658.4792;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:33;a:5:{s:4:"time";d:1698308658.479219;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:34;a:5:{s:4:"time";d:1698308658.504771;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:35;a:5:{s:4:"time";d:1698308658.504817;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:36;a:5:{s:4:"time";d:1698308658.50483;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:37;a:5:{s:4:"time";d:1698308658.504839;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698308658.504854;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698308658.504866;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698308658.508737;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698308658.508812;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698308657.355629;s:3:"end";d:1698308658.512041;s:6:"memory";i:9764224;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.42629;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426313;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426323;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426331;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426339;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426348;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426357;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698308657.426362;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------746598427028803658833277";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=b2f5cd4fb4df954ad98f0ceb76d26d46e714a3cfc60bd7283ae4df31791183e9a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22SsnNx6xCxHksuYZSD_1Of-91qAK54ctX%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a2231655f1";s:16:"X-Debug-Duration";s:5:"1,154";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a2231655f1";s:10:"Set-Cookie";s:204:"_csrf=e27ddafada7d931009a8f97a8ffc335b661fbd065fb36c13612039e167c2ab13a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22rMh3oT-3K6og8BkN4qDC-kgp8fRx9Zvu%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64312";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------746598427028803658833277";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=b2f5cd4fb4df954ad98f0ceb76d26d46e714a3cfc60bd7283ae4df31791183e9a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22SsnNx6xCxHksuYZSD_1Of-91qAK54ctX%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698308657.320316;s:12:"REQUEST_TIME";i:1698308657;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"b2f5cd4fb4df954ad98f0ceb76d26d46e714a3cfc60bd7283ae4df31791183e9a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"SsnNx6xCxHksuYZSD_1Of-91qAK54ctX"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a2231655f1";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698308657.320316;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9764224;s:14:"processingTime";d:1.1559460163116455;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a26f089b86.data b/runtime/debug/653a26f089b86.data deleted file mode 100644 index a8ce038..0000000 --- a/runtime/debug/653a26f089b86.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15105:"a:1:{s:8:"messages";a:29:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309872.528006;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309872.528029;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309872.563223;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698309872.569952;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309872.570747;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309872.570972;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309872.573135;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309872.573377;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309872.574524;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309872.574561;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698309872.577527;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309872.577537;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.606742;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309872.606796;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.611637;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.619056;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698309872.635288;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.644541;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.645335;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.646453;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.647234;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.648979;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649744;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698309872.658208;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698309872.658284;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.663085;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.668845;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7589088;}i:59;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.676067;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7608000;}i:62;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309872582, 1698309872677, 95, 0, 1698309872)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309872.679725;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7686624;}}}";s:9:"profiling";s:24691:"a:3:{s:6:"memory";i:7859880;s:4:"time";d:0.21602416038513184;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309872.606814;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309872.60879;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.608827;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.609932;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.611684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.612242;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.619103;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.619703;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64458;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.645244;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64536;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.646139;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64652;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.647049;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64726;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.648396;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649006;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649497;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649768;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.650478;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.663117;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.663609;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.668883;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.67551;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.676101;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.676708;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309872582, 1698309872677, 95, 0, 1698309872)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309872.679762;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309872582, 1698309872677, 95, 0, 1698309872)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309872.70676;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:2:"db";s:23888:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.608827;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.609932;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.611684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.612242;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.619103;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.619703;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64458;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.645244;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64536;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.646139;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64652;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.647049;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.64726;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.648396;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649006;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649497;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.649768;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.650478;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.663117;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.663609;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.668883;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.67551;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.676101;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309872.676708;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309872582, 1698309872677, 95, 0, 1698309872)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309872.679762;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309872582, 1698309872677, 95, 0, 1698309872)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309872.70676;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:5:"event";s:6386:"a:36:{i:0;a:5:{s:4:"time";d:1698309872.570959;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698309872.576709;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698309872.598424;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698309872.60878;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698309872.619758;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698309872.619825;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698309872.635846;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698309872.635862;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698309872.642258;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698309872.645287;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698309872.647139;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698309872.647174;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698309872.650525;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698309872.6506;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698309872.651376;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698309872.658247;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698309872.658265;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698309872.661953;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698309872.662102;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698309872.662809;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698309872.663649;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698309872.66372;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698309872.663744;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698309872.667654;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698309872.668767;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698309872.677724;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698309872.678661;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698309872.67868;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698309872.707526;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698309872.707571;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:30;a:5:{s:4:"time";d:1698309872.707584;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:31;a:5:{s:4:"time";d:1698309872.707593;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698309872.707608;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698309872.707619;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698309872.71141;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698309872.711488;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698309872.498046;s:3:"end";d:1698309872.714373;s:6:"memory";i:7859880;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1691:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.57745;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.577465;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.577475;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.577483;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.577491;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.5775;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.577509;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309872.577515;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------659517256815153423652927";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=e27ddafada7d931009a8f97a8ffc335b661fbd065fb36c13612039e167c2ab13a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22rMh3oT-3K6og8BkN4qDC-kgp8fRx9Zvu%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a26f089b86";s:16:"X-Debug-Duration";s:3:"214";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a26f089b86";s:10:"Set-Cookie";s:204:"_csrf=6f859c29be254e62d8ee4700919ddf34c56959279b84d8c569107061a6590736a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22XtYr-8pHNPuSsrFouKEauLRWYynZ9wuT%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64780";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------659517256815153423652927";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=e27ddafada7d931009a8f97a8ffc335b661fbd065fb36c13612039e167c2ab13a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22rMh3oT-3K6og8BkN4qDC-kgp8fRx9Zvu%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698309872.461886;s:12:"REQUEST_TIME";i:1698309872;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"e27ddafada7d931009a8f97a8ffc335b661fbd065fb36c13612039e167c2ab13a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"rMh3oT-3K6og8BkN4qDC-kgp8fRx9Zvu"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a26f089b86";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698309872.461886;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7859880;s:14:"processingTime";d:0.21602416038513184;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a27091e481.data b/runtime/debug/653a27091e481.data deleted file mode 100644 index f663a60..0000000 --- a/runtime/debug/653a27091e481.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15103:"a:1:{s:8:"messages";a:29:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309897.087892;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309897.087926;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309897.123157;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698309897.126788;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309897.12732;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309897.127773;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309897.130222;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309897.130537;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309897.131727;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309897.131766;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698309897.134795;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309897.134806;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.161132;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309897.161183;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.166405;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.173084;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698309897.189146;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.199245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.200098;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.201223;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.201856;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.203361;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.204117;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698309897.212118;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698309897.212186;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.21727;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.222693;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7589088;}i:59;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.224371;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7608000;}i:62;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309897139, 1698309897225, 86, 0, 1698309897)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309897.227684;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7686624;}}}";s:9:"profiling";s:24691:"a:3:{s:6:"memory";i:7859880;s:4:"time";d:0.20233798027038574;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309897.1612;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309897.163207;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.16325;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.164493;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.166449;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.167105;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.173116;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.173622;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.199286;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.199998;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.200123;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.200953;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.201248;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.201698;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.20188;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.202791;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.203386;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.203883;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.204141;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.204576;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.217306;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.2178;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.222722;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.22392;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.224396;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.224875;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309897139, 1698309897225, 86, 0, 1698309897)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309897.227715;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309897139, 1698309897225, 86, 0, 1698309897)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309897.255503;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:2:"db";s:23889:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.16325;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.164493;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.166449;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.167105;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.173116;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.173622;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.199286;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.199998;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.200123;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.200953;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.201248;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.201698;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.20188;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.202791;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.203386;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.203883;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.204141;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.204576;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.217306;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.2178;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.222722;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.22392;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.224396;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309897.224875;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309897139, 1698309897225, 86, 0, 1698309897)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309897.227715;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309897139, 1698309897225, 86, 0, 1698309897)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309897.255503;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:5:"event";s:6391:"a:36:{i:0;a:5:{s:4:"time";d:1698309897.127744;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698309897.133975;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698309897.155189;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698309897.163196;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698309897.173672;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698309897.173731;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698309897.189684;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698309897.189699;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698309897.196255;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698309897.200047;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698309897.201766;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698309897.201799;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698309897.204618;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698309897.204684;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698309897.205248;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698309897.21215;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698309897.212167;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698309897.216244;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698309897.216356;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698309897.217034;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698309897.217836;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698309897.217905;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698309897.217929;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698309897.221705;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698309897.222639;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698309897.225726;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698309897.226613;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698309897.226632;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698309897.256266;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698309897.256312;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:30;a:5:{s:4:"time";d:1698309897.256325;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:31;a:5:{s:4:"time";d:1698309897.256335;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698309897.256349;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698309897.256361;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698309897.260139;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698309897.260221;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698309897.060736;s:3:"end";d:1698309897.263431;s:6:"memory";i:7859880;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1692:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.134718;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.134735;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.134744;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.134752;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.13476;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.13477;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.134778;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309897.134783;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5295:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------468581003892633287921903";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=6f859c29be254e62d8ee4700919ddf34c56959279b84d8c569107061a6590736a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22XtYr-8pHNPuSsrFouKEauLRWYynZ9wuT%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a27091e481";s:16:"X-Debug-Duration";s:3:"200";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a27091e481";s:10:"Set-Cookie";s:204:"_csrf=a74fe23dbfcb02d051a9403ac2579cd968b83e151c9b926a6a02e5c175489d96a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22BbqkYYyjqS2flT4IDIqp2MI6RTLz1w1y%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64789";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------468581003892633287921903";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=6f859c29be254e62d8ee4700919ddf34c56959279b84d8c569107061a6590736a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22XtYr-8pHNPuSsrFouKEauLRWYynZ9wuT%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698309897.02402;s:12:"REQUEST_TIME";i:1698309897;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"6f859c29be254e62d8ee4700919ddf34c56959279b84d8c569107061a6590736a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"XtYr-8pHNPuSsrFouKEauLRWYynZ9wuT"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a27091e481";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698309897.02402;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7859880;s:14:"processingTime";d:0.20233798027038574;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a271267aa0.data b/runtime/debug/653a271267aa0.data deleted file mode 100644 index 2fded15..0000000 --- a/runtime/debug/653a271267aa0.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15100:"a:1:{s:8:"messages";a:29:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309906.4001;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309906.400122;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309906.423884;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698309906.426847;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309906.427302;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309906.427553;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309906.429059;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309906.429253;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309906.429998;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309906.43014;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698309906.433202;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309906.433214;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.457022;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309906.457071;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.46117;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.467041;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698309906.476404;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.483776;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.484714;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.485886;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.48663;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.488334;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.489127;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698309906.494675;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698309906.494747;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.498723;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.503023;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7589088;}i:59;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.504755;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7608000;}i:62;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309906437, 1698309906505, 68, 0, 1698309906)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309906.507657;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7686624;}}}";s:9:"profiling";s:24694:"a:3:{s:6:"memory";i:7859880;s:4:"time";d:0.16444611549377441;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309906.457089;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309906.45881;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.45884;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.459939;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.461205;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.461781;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.467084;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.467729;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.483824;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.484605;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.484741;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.48558;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.485917;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.486448;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.486655;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.487743;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.488363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.488864;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.489153;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.48954;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.498758;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.499257;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.503061;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.504261;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.504793;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.505296;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309906437, 1698309906505, 68, 0, 1698309906)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309906.507693;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309906437, 1698309906505, 68, 0, 1698309906)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309906.538703;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:2:"db";s:23891:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.45884;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.459939;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.461205;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.461781;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.467084;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.467729;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.483824;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.484605;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.484741;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.48558;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.485917;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.486448;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.486655;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.487743;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.488363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.488864;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.489153;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.48954;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.498758;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.499257;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.503061;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.504261;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.504793;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309906.505296;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309906437, 1698309906505, 68, 0, 1698309906)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309906.507693;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309906437, 1698309906505, 68, 0, 1698309906)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309906.538703;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:5:"event";s:6387:"a:36:{i:0;a:5:{s:4:"time";d:1698309906.427541;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698309906.432551;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698309906.452355;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698309906.458801;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698309906.467786;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698309906.467854;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698309906.476769;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698309906.476785;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698309906.48208;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698309906.484658;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698309906.486529;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698309906.486567;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698309906.489583;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698309906.48966;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698309906.490134;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698309906.494711;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698309906.494729;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698309906.497843;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698309906.497957;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698309906.498484;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698309906.499295;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698309906.499365;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698309906.49939;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698309906.502376;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698309906.50296;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698309906.506039;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698309906.506777;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698309906.506796;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698309906.539271;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698309906.539317;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:30;a:5:{s:4:"time";d:1698309906.539331;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:31;a:5:{s:4:"time";d:1698309906.53934;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698309906.539354;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698309906.539366;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698309906.542013;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698309906.542089;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698309906.380045;s:3:"end";d:1698309906.544796;s:6:"memory";i:7859880;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433124;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433142;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433151;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433159;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433168;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433176;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433185;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309906.433191;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------490605780686765398867268";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a74fe23dbfcb02d051a9403ac2579cd968b83e151c9b926a6a02e5c175489d96a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22BbqkYYyjqS2flT4IDIqp2MI6RTLz1w1y%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a271267aa0";s:16:"X-Debug-Duration";s:3:"163";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a271267aa0";s:10:"Set-Cookie";s:204:"_csrf=b9d8f48044f08c9cf68e21c0fd24b5fc8dad1354a0bab8e39edba0f4ffb77766a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22ii4jY5UuLg4rWXwo5fMaI0VU0jy79yXX%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64792";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------490605780686765398867268";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a74fe23dbfcb02d051a9403ac2579cd968b83e151c9b926a6a02e5c175489d96a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22BbqkYYyjqS2flT4IDIqp2MI6RTLz1w1y%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698309906.364854;s:12:"REQUEST_TIME";i:1698309906;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a74fe23dbfcb02d051a9403ac2579cd968b83e151c9b926a6a02e5c175489d96a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"BbqkYYyjqS2flT4IDIqp2MI6RTLz1w1y"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a271267aa0";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698309906.364854;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7859880;s:14:"processingTime";d:0.16444611549377441;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a272a15881.data b/runtime/debug/653a272a15881.data deleted file mode 100644 index b7223e7..0000000 --- a/runtime/debug/653a272a15881.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15101:"a:1:{s:8:"messages";a:29:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309930.063958;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309930.063981;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309930.087443;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698309930.090832;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309930.091646;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309930.091871;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309930.095311;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309930.095607;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698309930.096252;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698309930.09631;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698309930.098814;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698309930.098826;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.11969;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309930.119747;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.124449;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.130287;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698309930.141577;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.147417;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.148339;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.149489;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.150382;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152075;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.15289;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698309930.159731;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698309930.159822;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.16313;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.167616;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7589088;}i:59;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.169299;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7608000;}i:62;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309930102, 1698309930170, 68, 0, 1698309930)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309930.173215;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7686624;}}}";s:9:"profiling";s:24694:"a:3:{s:6:"memory";i:7859880;s:4:"time";d:0.15431690216064453;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309930.119765;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698309930.121473;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.121506;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.122611;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.12452;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.125457;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.13033;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.131061;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.147457;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.148233;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.148367;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.149194;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.149519;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.150155;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.150412;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.151468;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152105;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152625;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152923;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.153389;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.163167;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.163785;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.167654;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.168848;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.169325;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.16989;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309930102, 1698309930170, 68, 0, 1698309930)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309930.173258;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309930102, 1698309930170, 68, 0, 1698309930)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309930.19059;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:2:"db";s:23890:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.121506;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.122611;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.12452;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.125457;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.13033;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.131061;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.147457;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.148233;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.148367;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.149194;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.149519;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.150155;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.150412;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.151468;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152105;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152625;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.152923;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.153389;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.163167;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.163785;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.167654;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.168848;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.169325;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698309930.16989;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309930102, 1698309930170, 68, 0, 1698309930)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309930.173258;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698309930102, 1698309930170, 68, 0, 1698309930)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698309930.19059;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:5:"event";s:6386:"a:36:{i:0;a:5:{s:4:"time";d:1698309930.091858;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698309930.098167;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698309930.115038;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698309930.121464;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698309930.131121;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698309930.131212;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698309930.142011;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698309930.142027;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698309930.145783;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698309930.148285;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698309930.150261;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698309930.150304;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698309930.153434;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698309930.153509;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698309930.154028;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698309930.15978;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698309930.159801;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698309930.162309;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698309930.162412;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698309930.162895;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698309930.163841;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698309930.163922;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698309930.16395;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698309930.16694;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698309930.167546;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698309930.170873;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698309930.172252;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698309930.172275;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698309930.191619;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698309930.191673;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:30;a:5:{s:4:"time";d:1698309930.191686;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:31;a:5:{s:4:"time";d:1698309930.191696;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698309930.191711;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698309930.191723;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698309930.19462;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698309930.1947;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698309930.04271;s:3:"end";d:1698309930.197335;s:6:"memory";i:7859880;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098737;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098754;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098764;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098772;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.09878;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098789;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098797;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698309930.098803;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------093203260889331819523220";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=b9d8f48044f08c9cf68e21c0fd24b5fc8dad1354a0bab8e39edba0f4ffb77766a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22ii4jY5UuLg4rWXwo5fMaI0VU0jy79yXX%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a272a15881";s:16:"X-Debug-Duration";s:3:"153";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a272a15881";s:10:"Set-Cookie";s:204:"_csrf=2bc656f21bf0be12fdf50a7f926151c29d3cf473a3b44c76f8c1b78e7ba97357a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22V-6FNi9Nb0GZkMyduXXGzM6hCqlNA-zK%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64798";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------093203260889331819523220";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=b9d8f48044f08c9cf68e21c0fd24b5fc8dad1354a0bab8e39edba0f4ffb77766a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22ii4jY5UuLg4rWXwo5fMaI0VU0jy79yXX%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698309930.026609;s:12:"REQUEST_TIME";i:1698309930;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"b9d8f48044f08c9cf68e21c0fd24b5fc8dad1354a0bab8e39edba0f4ffb77766a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"ii4jY5UuLg4rWXwo5fMaI0VU0jy79yXX"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a272a15881";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698309930.026609;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7859880;s:14:"processingTime";d:0.15431690216064453;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a279545b50.data b/runtime/debug/653a279545b50.data deleted file mode 100644 index 9bbc8f2..0000000 --- a/runtime/debug/653a279545b50.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:15103:"a:1:{s:8:"messages";a:29:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698310037.253765;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698310037.253786;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698310037.284331;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698310037.288871;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310037.290564;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310037.290867;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310037.293225;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698310037.293476;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698310037.294644;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310037.294679;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698310037.297949;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698310037.297962;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.324792;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698310037.324844;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.329404;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.336139;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698310037.352233;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.362245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.369831;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.370965;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.371628;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.373282;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374319;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698310037.382326;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698310037.382397;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.38704;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.393304;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7589088;}i:59;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.395133;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7608000;}i:62;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310037302, 1698310037396, 94, 0, 1698310037)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310037.39871;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7686624;}}}";s:9:"profiling";s:24697:"a:3:{s:6:"memory";i:7859880;s:4:"time";d:0.2102830410003662;s:8:"messages";a:28:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698310037.324862;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698310037.326558;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.326589;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.327609;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.329445;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.330115;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.336171;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.336684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.362285;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.369697;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.369862;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.370683;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.370992;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.371467;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.371653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.372482;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.373317;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374008;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374348;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374772;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.387069;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.387516;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.393342;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.394636;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.395172;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.395681;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310037302, 1698310037396, 94, 0, 1698310037)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310037.398748;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310037302, 1698310037396, 94, 0, 1698310037)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310037.430857;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:2:"db";s:23894:"a:1:{s:8:"messages";a:26:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.326589;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.327609;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.329445;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.330115;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.336171;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.336684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.362285;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.369697;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.369862;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.370683;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.370992;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.371467;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.371653;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.372482;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.373317;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374008;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374348;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.374772;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.387069;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.387516;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.393342;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7591208;}i:58;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.394636;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614168;}i:60;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.395172;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7611616;}i:61;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310037.395681;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7614752;}i:63;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310037302, 1698310037396, 94, 0, 1698310037)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310037.398748;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7684984;}i:64;a:6:{i:0;s:653:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310037302, 1698310037396, 94, 0, 1698310037)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310037.430857;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7687640;}}}";s:5:"event";s:6387:"a:36:{i:0;a:5:{s:4:"time";d:1698310037.290854;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698310037.297113;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698310037.318615;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698310037.32655;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698310037.336734;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698310037.336794;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698310037.352777;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698310037.352793;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698310037.359849;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698310037.369766;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698310037.371536;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698310037.37157;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698310037.37482;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698310037.374895;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698310037.375563;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698310037.382361;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698310037.382378;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698310037.386054;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698310037.386151;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698310037.386789;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698310037.387552;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698310037.38762;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698310037.387644;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698310037.392292;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698310037.393238;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:25;a:5:{s:4:"time";d:1698310037.396641;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:26;a:5:{s:4:"time";d:1698310037.397574;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:27;a:5:{s:4:"time";d:1698310037.397625;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:28;a:5:{s:4:"time";d:1698310037.43164;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:29;a:5:{s:4:"time";d:1698310037.431685;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:30;a:5:{s:4:"time";d:1698310037.431698;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:31;a:5:{s:4:"time";d:1698310037.431707;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:32;a:5:{s:4:"time";d:1698310037.431722;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:33;a:5:{s:4:"time";d:1698310037.431733;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:34;a:5:{s:4:"time";d:1698310037.435579;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:35;a:5:{s:4:"time";d:1698310037.435655;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698310037.228126;s:3:"end";d:1698310037.438722;s:6:"memory";i:7859880;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297871;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297888;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297898;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297906;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297915;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297924;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297932;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310037.297937;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5296:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------895051538021930933490990";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=2bc656f21bf0be12fdf50a7f926151c29d3cf473a3b44c76f8c1b78e7ba97357a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22V-6FNi9Nb0GZkMyduXXGzM6hCqlNA-zK%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a279545b50";s:16:"X-Debug-Duration";s:3:"208";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a279545b50";s:10:"Set-Cookie";s:204:"_csrf=038e90a79506440440baf04fb3359d9e4096ba8d6de09441524ab0ad11ba962aa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22w6PakMP0KgtrgVs758AJBct3SNTjGtaV%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64808";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------895051538021930933490990";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=2bc656f21bf0be12fdf50a7f926151c29d3cf473a3b44c76f8c1b78e7ba97357a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22V-6FNi9Nb0GZkMyduXXGzM6hCqlNA-zK%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698310037.194293;s:12:"REQUEST_TIME";i:1698310037;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"2bc656f21bf0be12fdf50a7f926151c29d3cf473a3b44c76f8c1b78e7ba97357a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"V-6FNi9Nb0GZkMyduXXGzM6hCqlNA-zK"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a279545b50";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698310037.194293;s:10:"statusCode";i:200;s:8:"sqlCount";i:13;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7859880;s:14:"processingTime";d:0.2102830410003662;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a27aca516c.data b/runtime/debug/653a27aca516c.data deleted file mode 100644 index 388ec5f..0000000 --- a/runtime/debug/653a27aca516c.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28905:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698310060.64138;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698310060.641403;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698310060.675309;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698310060.678961;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310060.679401;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310060.679658;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310060.681468;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698310060.681695;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698310060.684118;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310060.684177;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698310060.687403;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698310060.687416;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.714221;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698310060.714274;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.719319;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.726043;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698310060.742222;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.751894;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.752614;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.753665;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.754346;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.755874;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.756642;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698310060.764717;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698310060.764788;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.769853;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U2UiNz') OR (`mobile_phone`='U2UiNz'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.773979;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478664;}i:59;a:6:{i:0;s:56:"User '66' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698310061.644193;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477824;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698310061.64513;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504192;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310061.646089;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525880;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310061.647296;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533544;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310061.64747;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535800;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310061.647639;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537888;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310061.647791;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545776;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='JJWx9PSqC6bbN3') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.648082;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551448;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698310061.648841;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553584;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='66') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.649096;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557512;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'JJWx9PSqC6bbN3', '66', 1700902061, 0, 0, 1698310061)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.652722;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670168;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698310061.654022;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669104;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.680439;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702184;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.682021;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715944;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '66', 0, '127.0.0.1', 1, '登录成功', 1698310061)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.683761;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742840;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='66')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.702756;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812672;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.709927;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848736;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.71133;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867648;}i:95;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '66', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310060692, 1698310061712, 1020, 0, 1698310061)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.71351;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897936;}}}";s:9:"profiling";s:39194:"a:3:{s:6:"memory";i:8533176;s:4:"time";d:1.1321399211883545;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698310060.714292;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698310060.716342;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.716379;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.71744;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.719359;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.719958;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.726082;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.726657;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.751936;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.752516;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.752639;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.75338;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.753692;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.754177;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.754371;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.755251;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.755903;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.756392;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.756712;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.757036;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.769889;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.770411;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U2UiNz') OR (`mobile_phone`='U2UiNz'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.77401;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U2UiNz') OR (`mobile_phone`='U2UiNz'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.774471;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='JJWx9PSqC6bbN3') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.648114;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='JJWx9PSqC6bbN3') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.64878;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='66') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.649124;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='66') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.650745;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'JJWx9PSqC6bbN3', '66', 1700902061, 0, 0, 1698310061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.652766;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'JJWx9PSqC6bbN3', '66', 1700902061, 0, 0, 1698310061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.65336;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.68048;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.681743;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.682047;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.682564;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '66', 0, '127.0.0.1', 1, '登录成功', 1698310061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.683788;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '66', 0, '127.0.0.1', 1, '登录成功', 1698310061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.699225;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='66')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.702796;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='66')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.708981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.709958;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.710816;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.711359;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.71193;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '66', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310060692, 1698310061712, 1020, 0, 1698310061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.713548;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '66', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310060692, 1698310061712, 1020, 0, 1698310061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.737523;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:2:"db";s:38391:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.716379;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.71744;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.719359;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.719958;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.726082;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.726657;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.751936;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.752516;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.752639;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.75338;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.753692;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.754177;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.754371;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.755251;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.755903;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.756392;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.756712;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.757036;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.769889;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222222'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.770411;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U2UiNz') OR (`mobile_phone`='U2UiNz'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.77401;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U2UiNz') OR (`mobile_phone`='U2UiNz'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310060.774471;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='JJWx9PSqC6bbN3') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.648114;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='JJWx9PSqC6bbN3') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.64878;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='66') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.649124;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='66') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.650745;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'JJWx9PSqC6bbN3', '66', 1700902061, 0, 0, 1698310061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.652766;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'JJWx9PSqC6bbN3', '66', 1700902061, 0, 0, 1698310061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.65336;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.68048;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.681743;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.682047;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.682564;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '66', 0, '127.0.0.1', 1, '登录成功', 1698310061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.683788;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '66', 0, '127.0.0.1', 1, '登录成功', 1698310061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.699225;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='66')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.702796;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='66')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.708981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.709958;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.710816;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.711359;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698310061.71193;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '66', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310060692, 1698310061712, 1020, 0, 1698310061)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.713548;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '66', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222222\"}', '127.0.0.1', 1, '2023-10-26', 1698310060692, 1698310061712, 1020, 0, 1698310061)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698310061.737523;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:5:"event";s:9738:"a:55:{i:0;a:5:{s:4:"time";d:1698310060.679646;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698310060.686566;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698310060.708164;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698310060.716333;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698310060.726711;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698310060.726777;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698310060.742758;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698310060.742773;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698310060.749136;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698310060.752564;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698310060.75425;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698310060.754286;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698310060.757079;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698310060.757159;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698310060.757828;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698310060.764752;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698310060.764769;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698310060.768846;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698310060.768952;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698310060.769621;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698310060.770449;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698310060.770519;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698310060.770543;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698310060.772769;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698310060.773347;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698310060.774506;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698310060.774575;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698310061.644068;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698310061.644222;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698310061.645156;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698310061.647949;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698310061.650792;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698310061.650862;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698310061.651232;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698310061.651253;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698310061.654003;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698310061.679208;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698310061.680363;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698310061.683356;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698310061.683616;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698310061.683633;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698310061.699343;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698310061.700161;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698310061.709863;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698310061.71214;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698310061.71325;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698310061.713272;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698310061.737642;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698310061.737687;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698310061.7377;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698310061.73771;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698310061.737723;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698310061.737734;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698310061.741635;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698310061.741712;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698310060.61275;s:3:"end";d:1698310061.745381;s:6:"memory";i:8533176;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687318;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687341;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687352;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.68736;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687368;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687377;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687386;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698310060.687391;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------484238630127844752962246";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=038e90a79506440440baf04fb3359d9e4096ba8d6de09441524ab0ad11ba962aa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22w6PakMP0KgtrgVs758AJBct3SNTjGtaV%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a27aca516c";s:16:"X-Debug-Duration";s:5:"1,130";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a27aca516c";s:10:"Set-Cookie";s:204:"_csrf=a1d6c10dd8111460fbb27d44badd061f4528c45c81d36e1f4662f692ad5db80ea%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22B4LwhQJpkzVqApwe4iiD-2Gm-rI-0kmT%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"64815";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------484238630127844752962246";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=038e90a79506440440baf04fb3359d9e4096ba8d6de09441524ab0ad11ba962aa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22w6PakMP0KgtrgVs758AJBct3SNTjGtaV%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698310060.577855;s:12:"REQUEST_TIME";i:1698310060;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222222";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"038e90a79506440440baf04fb3359d9e4096ba8d6de09441524ab0ad11ba962aa:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"w6PakMP0KgtrgVs758AJBct3SNTjGtaV"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"66";s:8:"identity";a:26:{s:2:"id";s:4:"'66'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U2UiNz'";s:8:"password";s:62:"'$2y$13$oB5p7Pz3xIO1pY12PNG2suAzKiNAaPjZiDBFw8HiknN89wQL4wyZa'";s:8:"auth_key";s:34:"'hNq4Qy6fgqthIdC4VG5g26bDHadhTx6O'";s:12:"access_token";s:34:"'gY6EaWTmck5KWQq9qYblj-0ckQKn3KRI'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222222'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698308658";s:10:"updated_at";s:10:"1698308658";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a27aca516c";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698310060.577855;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533176;s:14:"processingTime";d:1.1321399211883545;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a2cd5be235.data b/runtime/debug/653a2cd5be235.data deleted file mode 100644 index 6bc2e10..0000000 --- a/runtime/debug/653a2cd5be235.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22951:"a:1:{s:8:"messages";a:40:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698311381.746292;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698311381.746313;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698311381.777914;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698311381.781566;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.782099;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.782377;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.784254;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698311381.784493;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698311381.785614;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.78565;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698311381.788958;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698311381.788971;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.815192;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698311381.815247;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.820036;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.826933;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698311381.84316;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.853057;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.854091;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855315;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.856032;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.857524;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.858259;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698311381.866196;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698311381.86627;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.871373;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698311381.872691;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:83;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7414992;}i:57;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.873561;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7436640;}i:58;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.874769;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7443664;}i:59;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.87498;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7445920;}i:60;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.875148;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7448624;}i:61;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.875306;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7450880;}i:62;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U1aGfa')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.875617;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7454352;}i:65;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311381.876022;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7463344;}i:66;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U1aGfa')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.741262;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7600560;}i:69;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222223', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1', 0, 'U1aGfa', '$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW', '8ORFTHONdVxE30rz0UMIt_p3tkzj839S', '', 1698311382, 1698311382, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.814339;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9529904;}i:72;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698311382.815685;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:110;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9525072;}i:73;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.845105;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9715736;}i:76;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.88448;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9734648;}i:79;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311381793, 1698311382886, 1093, 0, 1698311382)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.886693;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9774072;}}}";s:9:"profiling";s:29557:"a:3:{s:6:"memory";i:9872120;s:4:"time";d:1.189652919769287;s:8:"messages";a:34:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698311381.815266;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698311381.817257;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.81729;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.81832;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.820079;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.820834;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.82697;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.827515;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.853104;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.853965;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.854121;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855029;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855344;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855854;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.856058;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.85695;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.857551;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.858013;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.858284;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.85864;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.871409;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.871916;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7397792;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U1aGfa')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.875646;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7456584;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U1aGfa')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.875973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7458800;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U1aGfa')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.741304;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7602432;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U1aGfa')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.741788;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7604272;}i:70;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222223', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1', 0, 'U1aGfa', '$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW', '8ORFTHONdVxE30rz0UMIt_p3tkzj839S', '', 1698311382, 1698311382, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.814387;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9527824;}i:71;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222223', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1', 0, 'U1aGfa', '$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW', '8ORFTHONdVxE30rz0UMIt_p3tkzj839S', '', 1698311382, 1698311382, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.815079;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9529976;}i:74;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.845144;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9717856;}i:75;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.883974;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9740816;}i:77;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.884527;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9738264;}i:78;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.885073;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9741400;}i:80;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311381793, 1698311382886, 1093, 0, 1698311382)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.886725;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9772432;}i:81;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311381793, 1698311382886, 1093, 0, 1698311382)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.903748;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9775088;}}}";s:2:"db";s:28755:"a:1:{s:8:"messages";a:32:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.81729;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.81832;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.820079;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.820834;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.82697;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.827515;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.853104;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.853965;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.854121;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855029;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855344;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.855854;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.856058;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.85695;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.857551;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.858013;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.858284;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.85864;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.871409;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.871916;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7397792;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U1aGfa')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.875646;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7456584;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U1aGfa')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311381.875973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7458800;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U1aGfa')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.741304;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7602432;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U1aGfa')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.741788;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7604272;}i:70;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222223', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1', 0, 'U1aGfa', '$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW', '8ORFTHONdVxE30rz0UMIt_p3tkzj839S', '', 1698311382, 1698311382, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.814387;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9527824;}i:71;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222223', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1', 0, 'U1aGfa', '$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW', '8ORFTHONdVxE30rz0UMIt_p3tkzj839S', '', 1698311382, 1698311382, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.815079;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9529976;}i:74;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.845144;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9717856;}i:75;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.883974;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9740816;}i:77;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.884527;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9738264;}i:78;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311382.885073;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9741400;}i:80;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311381793, 1698311382886, 1093, 0, 1698311382)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.886725;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9772432;}i:81;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311381793, 1698311382886, 1093, 0, 1698311382)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311382.903748;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9775088;}}}";s:5:"event";s:7782:"a:44:{i:0;a:5:{s:4:"time";d:1698311381.782366;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698311381.788124;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698311381.809373;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698311381.817248;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698311381.827567;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698311381.827629;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698311381.843731;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698311381.843746;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698311381.850612;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698311381.854023;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698311381.855928;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698311381.855964;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698311381.858679;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698311381.858745;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698311381.859382;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698311381.866233;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698311381.866251;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698311381.870193;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698311381.870336;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698311381.871131;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698311381.872718;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698311381.875471;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:22;a:5:{s:4:"time";d:1698311382.734496;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:23;a:5:{s:4:"time";d:1698311382.734633;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:24;a:5:{s:4:"time";d:1698311382.741088;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698311382.741138;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:26;a:5:{s:4:"time";d:1698311382.741836;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698311382.741858;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:28;a:5:{s:4:"time";d:1698311382.81567;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:29;a:5:{s:4:"time";d:1698311382.842101;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698311382.842126;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:31;a:5:{s:4:"time";d:1698311382.844035;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:32;a:5:{s:4:"time";d:1698311382.84504;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:33;a:5:{s:4:"time";d:1698311382.88605;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:34;a:5:{s:4:"time";d:1698311382.886451;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:35;a:5:{s:4:"time";d:1698311382.886469;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:36;a:5:{s:4:"time";d:1698311382.903873;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:37;a:5:{s:4:"time";d:1698311382.903919;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:38;a:5:{s:4:"time";d:1698311382.903933;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:39;a:5:{s:4:"time";d:1698311382.903974;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:40;a:5:{s:4:"time";d:1698311382.90399;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:41;a:5:{s:4:"time";d:1698311382.904001;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:42;a:5:{s:4:"time";d:1698311382.908283;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:43;a:5:{s:4:"time";d:1698311382.908365;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698311381.721451;s:3:"end";d:1698311382.911476;s:6:"memory";i:9872120;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788877;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788896;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788907;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788914;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788923;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788932;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788941;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311381.788946;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------545475240055066876112932";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a1d6c10dd8111460fbb27d44badd061f4528c45c81d36e1f4662f692ad5db80ea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22B4LwhQJpkzVqApwe4iiD-2Gm-rI-0kmT%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a2cd5be235";s:16:"X-Debug-Duration";s:5:"1,188";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a2cd5be235";s:10:"Set-Cookie";s:204:"_csrf=c968ba6e7158f12fd391fc93b5932195d089944ee11ca8b53ecf7c6f6a096e15a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22eSFTdI38LZ18zWYIASjqJ384pDdlaKKX%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"65183";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------545475240055066876112932";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a1d6c10dd8111460fbb27d44badd061f4528c45c81d36e1f4662f692ad5db80ea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22B4LwhQJpkzVqApwe4iiD-2Gm-rI-0kmT%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698311381.679954;s:12:"REQUEST_TIME";i:1698311381;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222223";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a1d6c10dd8111460fbb27d44badd061f4528c45c81d36e1f4662f692ad5db80ea:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"B4LwhQJpkzVqApwe4iiD-2Gm-rI-0kmT"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a2cd5be235";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698311381.679954;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9872120;s:14:"processingTime";d:1.189652919769287;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a2d0d76c6f.data b/runtime/debug/653a2d0d76c6f.data deleted file mode 100644 index 6cecb49..0000000 --- a/runtime/debug/653a2d0d76c6f.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28908:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698311437.451471;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698311437.451494;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698311437.485618;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698311437.491021;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311437.492568;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311437.492806;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311437.494976;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698311437.495195;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698311437.49641;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311437.496447;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698311437.499561;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698311437.499573;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.528135;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698311437.528198;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.532723;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.539513;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698311437.556832;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.566507;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.567234;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568378;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.569061;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.570535;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.571239;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698311437.579553;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698311437.579628;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.584579;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.588938;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478664;}i:59;a:6:{i:0;s:56:"User '67' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698311438.460362;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477824;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698311438.461337;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504192;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311438.462332;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525880;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311438.463544;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533544;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311438.463749;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535800;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311438.463931;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537888;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311438.464097;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545776;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J1uhCM72fp55W4') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.464407;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551448;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698311438.46508;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553584;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.465323;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557512;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J1uhCM72fp55W4', '67', 1700903438, 0, 0, 1698311438)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.467991;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670168;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698311438.469103;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669104;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.498219;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702184;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.499527;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715944;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698311438)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.501266;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742840;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.520488;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812672;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.527683;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848736;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.529169;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867648;}i:95;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311437504, 1698311438530, 1026, 0, 1698311438)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.531414;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897936;}}}";s:9:"profiling";s:39193:"a:3:{s:6:"memory";i:8533176;s:4:"time";d:1.1573259830474854;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698311437.528217;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698311437.530024;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.53006;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.531041;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.532759;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.533297;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.539557;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.540158;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.566545;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.567135;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.567259;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568087;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568407;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568897;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.569086;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.569952;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.570562;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.570988;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.571263;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.571604;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.584613;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.585238;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.58897;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.589432;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J1uhCM72fp55W4') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.46444;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J1uhCM72fp55W4') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.465032;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.46535;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.466573;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J1uhCM72fp55W4', '67', 1700903438, 0, 0, 1698311438)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.468023;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J1uhCM72fp55W4', '67', 1700903438, 0, 0, 1698311438)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.46853;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.498261;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.499255;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.499553;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.50009;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698311438)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.501293;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698311438)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.51713;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.520525;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.52666;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.527715;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.528706;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.529196;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.529854;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311437504, 1698311438530, 1026, 0, 1698311438)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.531451;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311437504, 1698311438530, 1026, 0, 1698311438)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.573878;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:2:"db";s:38390:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.53006;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.531041;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.532759;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.533297;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.539557;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.540158;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.566545;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.567135;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.567259;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568087;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568407;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.568897;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.569086;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.569952;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.570562;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.570988;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.571263;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.571604;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.584613;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.585238;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.58897;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311437.589432;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J1uhCM72fp55W4') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.46444;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J1uhCM72fp55W4') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.465032;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.46535;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.466573;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J1uhCM72fp55W4', '67', 1700903438, 0, 0, 1698311438)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.468023;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J1uhCM72fp55W4', '67', 1700903438, 0, 0, 1698311438)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.46853;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.498261;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.499255;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.499553;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.50009;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698311438)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.501293;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698311438)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.51713;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.520525;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.52666;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.527715;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.528706;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.529196;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698311438.529854;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311437504, 1698311438530, 1026, 0, 1698311438)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.531451;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698311437504, 1698311438530, 1026, 0, 1698311438)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698311438.573878;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:5:"event";s:9740:"a:55:{i:0;a:5:{s:4:"time";d:1698311437.492793;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698311437.498697;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698311437.520945;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698311437.530015;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698311437.540216;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698311437.540286;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698311437.557521;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698311437.557537;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698311437.564176;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698311437.567184;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698311437.568969;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698311437.569002;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698311437.571642;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698311437.571706;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698311437.572328;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698311437.579592;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698311437.57961;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698311437.583537;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698311437.583645;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698311437.584346;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698311437.585276;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698311437.585345;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698311437.58537;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698311437.587706;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698311437.588288;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698311437.589573;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698311437.589658;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698311438.460217;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698311438.460392;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698311438.461365;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698311438.464266;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698311438.466611;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698311438.466677;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698311438.46688;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698311438.466899;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698311438.469086;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698311438.497111;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698311438.498149;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698311438.500869;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698311438.501119;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698311438.501136;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698311438.517248;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698311438.518109;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698311438.527611;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698311438.530112;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698311438.531182;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698311438.531201;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698311438.57403;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698311438.574076;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698311438.574089;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698311438.574099;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698311438.574113;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698311438.574124;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698311438.578581;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698311438.578665;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698311437.424454;s:3:"end";d:1698311438.582295;s:6:"memory";i:8533176;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499486;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499501;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.49951;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499518;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499526;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499536;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499544;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698311437.499549;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------384847576833706982250287";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=c968ba6e7158f12fd391fc93b5932195d089944ee11ca8b53ecf7c6f6a096e15a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22eSFTdI38LZ18zWYIASjqJ384pDdlaKKX%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a2d0d76c6f";s:16:"X-Debug-Duration";s:5:"1,155";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a2d0d76c6f";s:10:"Set-Cookie";s:204:"_csrf=7b6b5642bf1f35ba2dc4b3abe2e3a382fa1f0a1af01ab5c7908fd576c64af8e9a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22C5sQIiDj1-oaWRLTJcGrLSlUnizaqasY%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"65199";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------384847576833706982250287";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=c968ba6e7158f12fd391fc93b5932195d089944ee11ca8b53ecf7c6f6a096e15a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22eSFTdI38LZ18zWYIASjqJ384pDdlaKKX%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698311437.387391;s:12:"REQUEST_TIME";i:1698311437;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222223";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"c968ba6e7158f12fd391fc93b5932195d089944ee11ca8b53ecf7c6f6a096e15a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"eSFTdI38LZ18zWYIASjqJ384pDdlaKKX"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"67";s:8:"identity";a:26:{s:2:"id";s:4:"'67'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U1aGfa'";s:8:"password";s:62:"'$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW'";s:8:"auth_key";s:34:"'8ORFTHONdVxE30rz0UMIt_p3tkzj839S'";s:12:"access_token";s:34:"'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222223'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698311382";s:10:"updated_at";s:10:"1698311382";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a2d0d76c6f";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698311437.387391;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533176;s:14:"processingTime";d:1.1573259830474854;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a3707dd767.data b/runtime/debug/653a3707dd767.data deleted file mode 100644 index 06280af..0000000 --- a/runtime/debug/653a3707dd767.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28907:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313991.863095;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313991.863122;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313991.906206;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698313991.909963;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313991.910537;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313991.910881;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313991.912797;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313991.912991;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313991.914258;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313991.914296;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698313991.918619;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313991.918638;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.946247;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313991.946314;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.953213;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.9606;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698313991.977124;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.987268;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.988235;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989469;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.990132;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992054;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992926;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698313992.001471;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698313992.001552;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.006412;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.010753;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478664;}i:59;a:6:{i:0;s:56:"User '67' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698313992.877254;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477824;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698313992.878172;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504192;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313992.879147;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525880;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313992.88042;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533544;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313992.880643;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535800;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313992.880825;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537888;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313992.881019;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545776;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='dGxF0izBv9LX15') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.881339;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551448;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313992.881905;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553584;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.882151;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557512;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'dGxF0izBv9LX15', '67', 1700905992, 0, 0, 1698313992)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.885159;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670168;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698313992.886485;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669104;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.920997;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702184;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.922584;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715944;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313992)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.924429;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742840;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.951206;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812672;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.958349;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848736;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.960174;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867648;}i:95;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313991923, 1698313992961, 1038, 0, 1698313992)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.962241;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897936;}}}";s:9:"profiling";s:39199:"a:3:{s:6:"memory";i:8533176;s:4:"time";d:1.1798391342163086;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313991.946333;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313991.949066;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.949107;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.951449;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.953257;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.954063;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.960639;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.96139;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.987308;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.988128;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.988262;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989163;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989496;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.990157;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.991373;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992084;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992666;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992951;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.993446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.006446;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.007122;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.010783;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.01123;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='dGxF0izBv9LX15') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.881372;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='dGxF0izBv9LX15') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.881852;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.882186;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.883628;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'dGxF0izBv9LX15', '67', 1700905992, 0, 0, 1698313992)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.885192;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'dGxF0izBv9LX15', '67', 1700905992, 0, 0, 1698313992)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.885703;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.921043;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.922305;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.922612;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.923159;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313992)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.924462;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313992)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.948129;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.951245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.957323;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.958385;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.959703;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.960201;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.960846;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313991923, 1698313992961, 1038, 0, 1698313992)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.962284;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313991923, 1698313992961, 1038, 0, 1698313992)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313993.006502;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:2:"db";s:38396:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.949107;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.951449;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.953257;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.954063;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.960639;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.96139;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.987308;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.988128;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.988262;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989163;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989496;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.989973;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.990157;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.991373;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992084;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992666;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.992951;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313991.993446;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.006446;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.007122;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.010783;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.01123;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='dGxF0izBv9LX15') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.881372;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='dGxF0izBv9LX15') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.881852;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.882186;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.883628;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'dGxF0izBv9LX15', '67', 1700905992, 0, 0, 1698313992)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.885192;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'dGxF0izBv9LX15', '67', 1700905992, 0, 0, 1698313992)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.885703;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.921043;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.922305;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.922612;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.923159;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313992)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.924462;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313992)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.948129;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.951245;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.957323;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.958385;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.959703;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.960201;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313992.960846;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313991923, 1698313992961, 1038, 0, 1698313992)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313992.962284;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313991923, 1698313992961, 1038, 0, 1698313992)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313993.006502;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:5:"event";s:9735:"a:55:{i:0;a:5:{s:4:"time";d:1698313991.910869;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698313991.916942;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698313991.939779;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698313991.949057;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698313991.961445;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698313991.961509;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698313991.977683;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698313991.977699;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698313991.984899;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698313991.98818;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698313991.990041;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698313991.990074;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698313991.993489;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698313991.99356;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698313991.99419;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698313992.001513;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698313992.001532;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698313992.005391;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698313992.005502;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698313992.00618;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698313992.007163;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698313992.007236;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698313992.007264;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698313992.009543;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698313992.01012;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698313992.011264;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698313992.011332;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698313992.877121;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698313992.877282;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698313992.878202;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698313992.881202;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698313992.883666;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698313992.883731;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698313992.883938;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698313992.883957;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698313992.886464;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698313992.919838;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698313992.92092;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698313992.924028;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698313992.92428;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698313992.924297;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698313992.948247;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698313992.949084;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698313992.958277;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698313992.961058;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698313992.962022;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698313992.96204;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698313993.006624;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698313993.00667;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698313993.006684;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698313993.006693;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698313993.006707;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698313993.006724;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698313993.010786;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698313993.010871;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698313991.834147;s:3:"end";d:1698313993.014495;s:6:"memory";i:8533176;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918489;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918511;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918521;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918529;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918537;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.91855;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918559;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313991.918565;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------815511916232469740711971";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=7b6b5642bf1f35ba2dc4b3abe2e3a382fa1f0a1af01ab5c7908fd576c64af8e9a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22C5sQIiDj1-oaWRLTJcGrLSlUnizaqasY%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a3707dd767";s:16:"X-Debug-Duration";s:5:"1,178";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a3707dd767";s:10:"Set-Cookie";s:204:"_csrf=2438fc64082d42f353c550379303ab667806bb7c0516f3c0ea559f51c88ecb58a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22XbjJ59ft0wMmc1JrX9IGyJSa6tRXKqOC%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49659";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------815511916232469740711971";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=7b6b5642bf1f35ba2dc4b3abe2e3a382fa1f0a1af01ab5c7908fd576c64af8e9a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22C5sQIiDj1-oaWRLTJcGrLSlUnizaqasY%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698313991.797916;s:12:"REQUEST_TIME";i:1698313991;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222223";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"7b6b5642bf1f35ba2dc4b3abe2e3a382fa1f0a1af01ab5c7908fd576c64af8e9a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"C5sQIiDj1-oaWRLTJcGrLSlUnizaqasY"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"67";s:8:"identity";a:26:{s:2:"id";s:4:"'67'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U1aGfa'";s:8:"password";s:62:"'$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW'";s:8:"auth_key";s:34:"'8ORFTHONdVxE30rz0UMIt_p3tkzj839S'";s:12:"access_token";s:34:"'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222223'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698311382";s:10:"updated_at";s:10:"1698311382";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a3707dd767";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698313991.797916;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533176;s:14:"processingTime";d:1.1798391342163086;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a370a96147.data b/runtime/debug/653a370a96147.data deleted file mode 100644 index e33650f..0000000 --- a/runtime/debug/653a370a96147.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28905:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313994.592015;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313994.592035;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313994.614028;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698313994.616913;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313994.617341;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313994.61759;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313994.619042;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313994.619228;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313994.619778;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313994.619812;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698313994.622389;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313994.622402;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.643598;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313994.643649;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.648342;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.653275;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698313994.662495;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668061;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668873;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.669909;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.670576;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.672674;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.67383;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698313994.679544;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698313994.679616;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.68282;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.685948;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478664;}i:59;a:6:{i:0;s:56:"User '67' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698313995.534758;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477824;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698313995.535477;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504192;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313995.53625;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525880;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313995.537082;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533544;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313995.537253;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535800;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313995.537413;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537888;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313995.537565;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545776;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='qSPq8oi99GU8Dz') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.537861;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551448;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313995.538428;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553584;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.538667;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557512;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'qSPq8oi99GU8Dz', '67', 1700905995, 0, 0, 1698313995)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.541641;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670168;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698313995.542635;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669104;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.574007;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702184;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.575644;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715944;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313995)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.577455;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742840;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.613466;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812672;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.621634;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848736;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.623289;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867648;}i:95;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313994625, 1698313995624, 999, 0, 1698313995)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.626046;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897936;}}}";s:9:"profiling";s:39197:"a:3:{s:6:"memory";i:8533176;s:4:"time";d:1.0797040462493896;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313994.643667;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313994.645683;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.645716;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.647069;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.648376;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.648877;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.653304;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.653775;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668097;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668784;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668898;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.669642;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.669935;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.670416;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.670601;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.671882;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.672712;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.673308;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.673859;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.674363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.682848;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.68339;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.685972;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.686315;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='qSPq8oi99GU8Dz') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.537894;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='qSPq8oi99GU8Dz') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.538383;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.538692;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.540239;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'qSPq8oi99GU8Dz', '67', 1700905995, 0, 0, 1698313995)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.54168;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'qSPq8oi99GU8Dz', '67', 1700905995, 0, 0, 1698313995)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.542192;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.574052;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.575339;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.575675;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.576328;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313995)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.577484;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313995)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.611075;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.613503;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.620821;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.621666;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.622718;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.623318;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.623909;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313994625, 1698313995624, 999, 0, 1698313995)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.626089;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313994625, 1698313995624, 999, 0, 1698313995)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.647958;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:2:"db";s:38394:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.645716;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.647069;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.648376;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.648877;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.653304;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.653775;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668097;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668784;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.668898;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.669642;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.669935;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.670416;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.670601;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.671882;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.672712;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.673308;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.673859;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.674363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.682848;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.68339;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.685972;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313994.686315;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='qSPq8oi99GU8Dz') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.537894;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='qSPq8oi99GU8Dz') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.538383;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.538692;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.540239;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'qSPq8oi99GU8Dz', '67', 1700905995, 0, 0, 1698313995)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.54168;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'qSPq8oi99GU8Dz', '67', 1700905995, 0, 0, 1698313995)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.542192;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.574052;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.575339;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.575675;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.576328;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313995)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.577484;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313995)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.611075;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.613503;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.620821;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.621666;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.622718;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.623318;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313995.623909;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313994625, 1698313995624, 999, 0, 1698313995)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.626089;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313994625, 1698313995624, 999, 0, 1698313995)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313995.647958;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:5:"event";s:9735:"a:55:{i:0;a:5:{s:4:"time";d:1698313994.617578;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698313994.621662;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698313994.637513;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698313994.645673;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698313994.653823;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698313994.653887;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698313994.662861;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698313994.662876;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698313994.666507;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698313994.668825;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698313994.67049;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698313994.67052;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698313994.67441;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698313994.674485;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698313994.674969;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698313994.67958;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698313994.679597;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698313994.682035;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698313994.682132;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698313994.682601;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698313994.683427;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698313994.683494;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698313994.683517;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698313994.685132;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698313994.68551;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698313994.686348;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698313994.686411;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698313995.5346;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698313995.534787;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698313995.535503;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698313995.537729;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698313995.540288;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698313995.54036;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698313995.540579;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698313995.540598;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698313995.542616;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698313995.573012;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698313995.573906;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698313995.577046;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698313995.577301;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698313995.577319;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698313995.611199;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698313995.611797;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698313995.621557;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698313995.624201;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698313995.625778;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698313995.625799;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698313995.648083;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698313995.648128;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698313995.648141;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698313995.64815;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698313995.648164;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698313995.648175;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698313995.650955;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698313995.651031;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698313994.573897;s:3:"end";d:1698313995.654087;s:6:"memory";i:8533176;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622307;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622326;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622336;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622344;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622353;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622362;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622371;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313994.622377;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------060843471180453445958978";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=2438fc64082d42f353c550379303ab667806bb7c0516f3c0ea559f51c88ecb58a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22XbjJ59ft0wMmc1JrX9IGyJSa6tRXKqOC%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a370a96147";s:16:"X-Debug-Duration";s:5:"1,078";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a370a96147";s:10:"Set-Cookie";s:204:"_csrf=317e937335ba6bb699868b73498ee37183a503dc2fca0ee796ca8371ee1829d7a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22pneX3deRe-bJqFzSntuYFe-yj0R5Ienl%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49663";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------060843471180453445958978";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=2438fc64082d42f353c550379303ab667806bb7c0516f3c0ea559f51c88ecb58a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22XbjJ59ft0wMmc1JrX9IGyJSa6tRXKqOC%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698313994.558657;s:12:"REQUEST_TIME";i:1698313994;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222223";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"2438fc64082d42f353c550379303ab667806bb7c0516f3c0ea559f51c88ecb58a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"XbjJ59ft0wMmc1JrX9IGyJSa6tRXKqOC"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"67";s:8:"identity";a:26:{s:2:"id";s:4:"'67'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U1aGfa'";s:8:"password";s:62:"'$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW'";s:8:"auth_key";s:34:"'8ORFTHONdVxE30rz0UMIt_p3tkzj839S'";s:12:"access_token";s:34:"'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222223'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698311382";s:10:"updated_at";s:10:"1698311382";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a370a96147";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698313994.558657;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533176;s:14:"processingTime";d:1.0797040462493896;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a370cbda1e.data b/runtime/debug/653a370cbda1e.data deleted file mode 100644 index aba7999..0000000 --- a/runtime/debug/653a370cbda1e.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28906:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313996.743318;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313996.74334;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313996.775098;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698313996.780843;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313996.78137;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313996.781612;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313996.78355;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313996.783763;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698313996.784893;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313996.784928;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698313996.788037;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698313996.788048;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.816138;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313996.816185;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.820999;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.828413;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698313996.845724;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.854942;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.855972;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857122;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857952;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.859836;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.860798;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698313996.868596;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698313996.868668;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.873495;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.878065;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478664;}i:59;a:6:{i:0;s:56:"User '67' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698313997.730093;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477824;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698313997.731245;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504192;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313997.732204;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525880;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313997.733404;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533544;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313997.733575;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535800;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313997.733734;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537888;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313997.733891;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545776;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='vJpyW8W1kvJTe6') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.734186;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551448;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698313997.73476;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553584;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.735001;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557512;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'vJpyW8W1kvJTe6', '67', 1700905997, 0, 0, 1698313997)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.737638;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670168;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698313997.738556;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669104;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.775133;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702184;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.782751;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715944;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313997)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.784621;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742840;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.809322;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812672;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.811306;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848736;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.813327;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867648;}i:95;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313996793, 1698313997814, 1021, 0, 1698313997)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.815385;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897936;}}}";s:9:"profiling";s:39198:"a:3:{s:6:"memory";i:8533176;s:4:"time";d:1.133692979812622;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313996.816203;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698313996.818114;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.818149;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.819386;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.821032;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.821537;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.828459;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.829159;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.854986;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.855833;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.856001;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.856751;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857151;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857657;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857979;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.859234;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.859872;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.86054;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.860823;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.861226;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.873527;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.874129;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.878098;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.878598;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='vJpyW8W1kvJTe6') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.734218;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='vJpyW8W1kvJTe6') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.734714;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.735026;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.73637;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'vJpyW8W1kvJTe6', '67', 1700905997, 0, 0, 1698313997)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.737667;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'vJpyW8W1kvJTe6', '67', 1700905997, 0, 0, 1698313997)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.737999;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.775173;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.782419;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.782782;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.783369;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313997)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.784647;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313997)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.806192;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.809357;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.810191;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.811339;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.812807;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.813358;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.813907;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313996793, 1698313997814, 1021, 0, 1698313997)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.815418;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313996793, 1698313997814, 1021, 0, 1698313997)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.844187;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:2:"db";s:38396:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.818149;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.819386;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.821032;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.821537;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.828459;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.829159;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.854986;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.855833;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.856001;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.856751;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857151;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857657;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.857979;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.859234;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.859872;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.86054;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.860823;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.861226;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.873527;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222223'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.874129;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400104;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.878098;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7480032;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U1aGfa') OR (`mobile_phone`='U1aGfa'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313996.878598;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486288;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='vJpyW8W1kvJTe6') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.734218;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552408;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='vJpyW8W1kvJTe6') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.734714;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554832;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.735026;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558848;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='67') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.73637;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560952;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'vJpyW8W1kvJTe6', '67', 1700905997, 0, 0, 1698313997)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.737667;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670808;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'vJpyW8W1kvJTe6', '67', 1700905997, 0, 0, 1698313997)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.737999;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672864;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.775173;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704328;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.782419;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716536;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.782782;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719560;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.783369;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722696;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313997)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.784647;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743712;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '67', 0, '127.0.0.1', 1, '登录成功', 1698313997)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.806192;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745824;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.809357;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814240;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='67')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.810191;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816992;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.811339;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850856;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.812807;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873816;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.813358;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871264;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698313997.813907;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874400;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313996793, 1698313997814, 1021, 0, 1698313997)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.815418;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896296;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '67', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222223\"}', '127.0.0.1', 1, '2023-10-26', 1698313996793, 1698313997814, 1021, 0, 1698313997)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698313997.844187;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898952;}}}";s:5:"event";s:9738:"a:55:{i:0;a:5:{s:4:"time";d:1698313996.781599;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698313996.787214;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698313996.809193;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698313996.818104;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698313996.829218;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698313996.829289;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698313996.846284;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698313996.846299;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698313996.852676;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698313996.855881;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698313996.857772;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698313996.857837;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698313996.861267;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698313996.861337;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698313996.861994;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698313996.868626;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698313996.868643;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698313996.872313;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698313996.87241;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698313996.87322;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698313996.874171;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698313996.874244;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698313996.874269;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698313996.876792;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698313996.877383;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698313996.878634;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698313996.878706;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698313997.729812;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698313997.730266;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698313997.731273;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698313997.734051;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698313997.736407;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698313997.736472;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698313997.736671;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698313997.73669;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698313997.738541;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698313997.774076;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698313997.775061;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698313997.784224;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698313997.784474;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698313997.784491;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698313997.806308;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698313997.807134;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698313997.811235;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698313997.814134;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698313997.81516;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698313997.815179;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698313997.84432;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698313997.844367;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698313997.844381;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698313997.84439;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698313997.844405;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698313997.844416;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698313997.848496;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698313997.848573;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698313996.717801;s:3:"end";d:1698313997.851973;s:6:"memory";i:8533176;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.787964;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.787979;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.787988;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.787996;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.788004;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.788012;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.78802;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698313996.788026;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------080573029787543241242415";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=317e937335ba6bb699868b73498ee37183a503dc2fca0ee796ca8371ee1829d7a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22pneX3deRe-bJqFzSntuYFe-yj0R5Ienl%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a370cbda1e";s:16:"X-Debug-Duration";s:5:"1,132";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a370cbda1e";s:10:"Set-Cookie";s:204:"_csrf=e24a8a5d4e78deb59e01f6ef3eb48611eca7f2380fe4137d4131f9ee4965efc5a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22lu637owO8-SkpJAFPBe24WaZPmhevi25%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49672";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------080573029787543241242415";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=317e937335ba6bb699868b73498ee37183a503dc2fca0ee796ca8371ee1829d7a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22pneX3deRe-bJqFzSntuYFe-yj0R5Ienl%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698313996.684012;s:12:"REQUEST_TIME";i:1698313996;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222223";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"317e937335ba6bb699868b73498ee37183a503dc2fca0ee796ca8371ee1829d7a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"pneX3deRe-bJqFzSntuYFe-yj0R5Ienl"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"67";s:8:"identity";a:26:{s:2:"id";s:4:"'67'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U1aGfa'";s:8:"password";s:62:"'$2y$13$Mjzs72qrxC6HFjjLhrIWGuBVI/YoTM9IPVPDKkjTnu6TQW4136qfW'";s:8:"auth_key";s:34:"'8ORFTHONdVxE30rz0UMIt_p3tkzj839S'";s:12:"access_token";s:34:"'pHFaguuSu7yQ6Ih9M2vRtp4n-h04ElJ1'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222223'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698311382";s:10:"updated_at";s:10:"1698311382";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a370cbda1e";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698313996.684012;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533176;s:14:"processingTime";d:1.133692979812622;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a371ca3511.data b/runtime/debug/653a371ca3511.data deleted file mode 100644 index 7945145..0000000 --- a/runtime/debug/653a371ca3511.data +++ /dev/null @@ -1,281 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:22951:"a:1:{s:8:"messages";a:40:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314012.645627;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314012.645649;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314012.668202;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698314012.671254;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.671881;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.672136;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.674218;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314012.674505;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314012.675178;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.675222;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698314012.677806;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314012.677818;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.698396;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314012.698465;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.702779;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.708341;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698314012.717581;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.723997;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724816;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.725864;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.726535;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.72813;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.728806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314012.734541;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698314012.734602;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.73778;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392520;}i:56;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698314012.739145;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:83;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7414992;}i:57;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.740005;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7436640;}i:58;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.74098;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7443664;}i:59;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.741159;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7445920;}i:60;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.741316;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7448624;}i:61;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.741494;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7450880;}i:62;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U5s1ph')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.741776;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7454352;}i:65;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314012.742215;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7463344;}i:66;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U5s1ph')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.594372;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7600560;}i:69;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222224', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l', 0, 'U5s1ph', '$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai', 'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy', '', 1698314013, 1698314013, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.672166;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9529904;}i:72;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698314013.673175;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:110;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9525072;}i:73;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.703585;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9715736;}i:76;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.70525;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9734648;}i:79;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314012680, 1698314013706, 1026, 0, 1698314013)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.70739;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9774072;}}}";s:9:"profiling";s:29560:"a:3:{s:6:"memory";i:9872120;s:4:"time";d:1.1028730869293213;s:8:"messages";a:34:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314012.698544;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314012.700509;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.700538;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.7016;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.702812;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.703282;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.708382;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.709052;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724038;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724713;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724843;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.725585;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.725891;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.726364;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.726561;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.727556;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.728156;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.72856;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.728858;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.729466;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.737806;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.738562;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7397792;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U5s1ph')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.741806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7456584;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U5s1ph')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.742164;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7458800;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U5s1ph')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.594414;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7602432;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U5s1ph')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.594862;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7604272;}i:70;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222224', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l', 0, 'U5s1ph', '$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai', 'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy', '', 1698314013, 1698314013, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.672212;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9527824;}i:71;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222224', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l', 0, 'U5s1ph', '$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai', 'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy', '', 1698314013, 1698314013, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.672755;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9529976;}i:74;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.703622;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9717856;}i:75;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.704806;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9740816;}i:77;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.705286;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9738264;}i:78;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.705797;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9741400;}i:80;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314012680, 1698314013706, 1026, 0, 1698314013)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.707468;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9772432;}i:81;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314012680, 1698314013706, 1026, 0, 1698314013)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.721896;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9775088;}}}";s:2:"db";s:28757:"a:1:{s:8:"messages";a:32:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.700538;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.7016;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.702812;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.703282;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.708382;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.709052;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724038;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724713;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.724843;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.725585;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.725891;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.726364;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.726561;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.727556;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.728156;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.72856;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.728858;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.729466;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.737806;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394352;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.738562;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7397792;}i:63;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U5s1ph')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.741806;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7456584;}i:64;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='U5s1ph')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314012.742164;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:86;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7458800;}i:67;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U5s1ph')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.594414;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7602432;}i:68;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='U5s1ph')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.594862;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7604272;}i:70;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222224', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l', 0, 'U5s1ph', '$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai', 'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy', '', 1698314013, 1698314013, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.672212;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9527824;}i:71;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222224', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l', 0, 'U5s1ph', '$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai', 'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy', '', 1698314013, 1698314013, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.672755;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:106;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9529976;}i:74;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.703622;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9717856;}i:75;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.704806;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9740816;}i:77;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.705286;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9738264;}i:78;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314013.705797;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9741400;}i:80;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314012680, 1698314013706, 1026, 0, 1698314013)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.707468;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9772432;}i:81;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '65', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314012680, 1698314013706, 1026, 0, 1698314013)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314013.721896;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:9775088;}}}";s:5:"event";s:7785:"a:44:{i:0;a:5:{s:4:"time";d:1698314012.672122;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698314012.677165;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698314012.693823;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698314012.700501;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698314012.709107;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698314012.709173;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698314012.717933;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698314012.717948;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698314012.721549;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698314012.724763;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698314012.726439;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698314012.726474;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698314012.729509;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698314012.729578;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698314012.730068;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698314012.734568;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698314012.734584;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698314012.737014;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698314012.737109;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698314012.737569;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698314012.739174;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:21;a:5:{s:4:"time";d:1698314012.741657;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:22;a:5:{s:4:"time";d:1698314013.589447;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:23;a:5:{s:4:"time";d:1698314013.589575;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:24;a:5:{s:4:"time";d:1698314013.594193;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698314013.594245;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:26;a:5:{s:4:"time";d:1698314013.594909;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698314013.594931;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:28;a:5:{s:4:"time";d:1698314013.673159;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:29;a:5:{s:4:"time";d:1698314013.701408;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698314013.701438;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:31;a:5:{s:4:"time";d:1698314013.702952;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:32;a:5:{s:4:"time";d:1698314013.703527;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:33;a:5:{s:4:"time";d:1698314013.706618;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:34;a:5:{s:4:"time";d:1698314013.707141;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:35;a:5:{s:4:"time";d:1698314013.707165;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:36;a:5:{s:4:"time";d:1698314013.722017;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:37;a:5:{s:4:"time";d:1698314013.722062;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:38;a:5:{s:4:"time";d:1698314013.722075;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:39;a:5:{s:4:"time";d:1698314013.722085;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:40;a:5:{s:4:"time";d:1698314013.722099;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:41;a:5:{s:4:"time";d:1698314013.72211;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:42;a:5:{s:4:"time";d:1698314013.725281;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:43;a:5:{s:4:"time";d:1698314013.725365;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698314012.627277;s:3:"end";d:1698314013.730533;s:6:"memory";i:9872120;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.67773;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677747;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677756;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677764;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677772;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677781;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677789;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314012.677795;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------068596740509696264803113";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=e24a8a5d4e78deb59e01f6ef3eb48611eca7f2380fe4137d4131f9ee4965efc5a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22lu637owO8-SkpJAFPBe24WaZPmhevi25%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a371ca3511";s:16:"X-Debug-Duration";s:5:"1,099";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a371ca3511";s:10:"Set-Cookie";s:204:"_csrf=e5a08a8e3b33c86ccc2d57b169f4d3336b2bcd47b5a8515b2d83edff3db072aea%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22tl3d_rJa1gk66AaEbjcKD-eq-6qRoKlZ%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49678";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------068596740509696264803113";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=e24a8a5d4e78deb59e01f6ef3eb48611eca7f2380fe4137d4131f9ee4965efc5a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22lu637owO8-SkpJAFPBe24WaZPmhevi25%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698314012.611872;s:12:"REQUEST_TIME";i:1698314012;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222224";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"e24a8a5d4e78deb59e01f6ef3eb48611eca7f2380fe4137d4131f9ee4965efc5a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"lu637owO8-SkpJAFPBe24WaZPmhevi25"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2944:"a:5:{s:2:"id";s:2:"65";s:8:"identity";a:26:{s:2:"id";s:4:"'65'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:9:"'Umcvqe1'";s:8:"password";s:62:"'$2y$13$h1rFZxffWh0BiJJtDs4gPum0Wsx5KfYJXAsqcPL8PNb4w8hd9hoPW'";s:8:"auth_key";s:34:"'MqDPRppFI2OgJpjwFE68C9Sn2SbeXAwV'";s:12:"access_token";s:34:"'bOxZSNi_gU02GsWLDJUjrP0wX2nQ7Qal'";s:8:"nickname";s:8:"'Umcvqe'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18111111112'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'张三'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"1";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698133733";s:10:"updated_at";s:10:"1698228126";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a371ca3511";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698314012.611872;s:10:"statusCode";i:200;s:8:"sqlCount";i:16;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9872120;s:14:"processingTime";d:1.1028730869293213;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a375b86a7b.data b/runtime/debug/653a375b86a7b.data deleted file mode 100644 index 9e5ef06..0000000 --- a/runtime/debug/653a375b86a7b.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28903:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314075.514247;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314075.514275;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314075.550604;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698314075.555111;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314075.558672;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314075.55978;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314075.562087;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314075.562356;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314075.563552;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314075.5636;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698314075.56706;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314075.567073;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.599167;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314075.599256;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.604283;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.612684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698314075.631074;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.6444;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.645346;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646508;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.647162;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.648716;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649468;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314075.658351;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698314075.658434;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.663526;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392480;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.668581;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478624;}i:59;a:6:{i:0;s:56:"User '68' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314076.575273;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477784;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698314076.576491;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504152;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314076.577492;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525840;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314076.578717;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533504;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314076.578894;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535760;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314076.579055;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537848;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314076.579209;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545736;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='tqStJYMpkjexiV') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.579538;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551408;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314076.580144;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553544;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.580394;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557472;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'tqStJYMpkjexiV', '68', 1700906076, 0, 0, 1698314076)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.583098;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670128;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698314076.584128;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669064;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.619311;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702144;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.62077;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715904;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314076)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.622648;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742800;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.643167;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812632;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.644984;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848696;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.646666;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867608;}i:95;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314075572, 1698314076647, 1075, 0, 1698314076)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.648792;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897896;}}}";s:9:"profiling";s:39197:"a:3:{s:6:"memory";i:8533136;s:4:"time";d:1.1980960369110107;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314075.599275;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314075.601266;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.601313;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.602595;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.604326;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.604899;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.612736;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.613398;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.644445;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.645237;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.645373;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646217;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646536;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646999;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.647187;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.648129;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.648742;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649206;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649493;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.663561;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.664306;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.668656;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.669322;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='tqStJYMpkjexiV') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.579572;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='tqStJYMpkjexiV') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.580092;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.580432;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.581664;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'tqStJYMpkjexiV', '68', 1700906076, 0, 0, 1698314076)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.583129;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'tqStJYMpkjexiV', '68', 1700906076, 0, 0, 1698314076)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.583564;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.619357;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.620455;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.6208;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.621379;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314076)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.622682;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314076)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.63955;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.643209;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.643995;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.645018;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.64616;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.646694;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.647343;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314075572, 1698314076647, 1075, 0, 1698314076)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.648836;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314075572, 1698314076647, 1075, 0, 1698314076)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.676574;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:2:"db";s:38394:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.601313;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.602595;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.604326;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.604899;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.612736;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.613398;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.644445;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.645237;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.645373;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646217;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646536;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.646999;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.647187;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.648129;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.648742;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649206;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649493;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.649949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.663561;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.664306;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.668656;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314075.669322;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='tqStJYMpkjexiV') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.579572;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='tqStJYMpkjexiV') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.580092;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.580432;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.581664;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'tqStJYMpkjexiV', '68', 1700906076, 0, 0, 1698314076)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.583129;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'tqStJYMpkjexiV', '68', 1700906076, 0, 0, 1698314076)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.583564;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.619357;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.620455;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.6208;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.621379;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314076)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.622682;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314076)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.63955;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.643209;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.643995;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.645018;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.64616;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.646694;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314076.647343;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314075572, 1698314076647, 1075, 0, 1698314076)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.648836;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314075572, 1698314076647, 1075, 0, 1698314076)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314076.676574;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:5:"event";s:9742:"a:55:{i:0;a:5:{s:4:"time";d:1698314075.559765;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698314075.566139;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698314075.592281;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698314075.601256;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698314075.613457;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698314075.613526;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698314075.631647;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698314075.631663;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698314075.641758;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698314075.64529;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698314075.647068;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698314075.647104;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698314075.649992;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698314075.650065;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698314075.650715;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698314075.658394;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698314075.658414;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698314075.662483;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698314075.662601;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698314075.663282;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698314075.664345;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698314075.664415;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698314075.664444;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698314075.666724;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698314075.667295;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698314075.669369;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698314075.669445;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698314076.575011;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698314076.575306;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698314076.576526;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698314076.579387;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698314076.581704;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698314076.581772;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698314076.581975;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698314076.581993;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698314076.584112;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698314076.618179;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698314076.61924;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698314076.622235;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698314076.622496;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698314076.622513;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698314076.639674;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698314076.640699;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698314076.644919;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698314076.647562;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698314076.648569;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698314076.648588;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698314076.676726;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698314076.676772;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698314076.676786;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698314076.676795;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698314076.676809;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698314076.676828;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698314076.680797;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698314076.680886;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698314075.48587;s:3:"end";d:1698314076.684459;s:6:"memory";i:8533136;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.566971;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.566991;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.567004;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.567012;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.567021;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.567032;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.567041;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314075.567047;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------321390976020950151217706";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=e5a08a8e3b33c86ccc2d57b169f4d3336b2bcd47b5a8515b2d83edff3db072aea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tl3d_rJa1gk66AaEbjcKD-eq-6qRoKlZ%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a375b86a7b";s:16:"X-Debug-Duration";s:5:"1,196";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a375b86a7b";s:10:"Set-Cookie";s:204:"_csrf=7e09a6838a240f69ff98f7bf5aa3cf959b124665f2b456c0a4b5e5fb2a83dde2a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22n5rwBNUa2bIME2VYbV4vO3Clb-ktm73F%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49709";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------321390976020950151217706";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=e5a08a8e3b33c86ccc2d57b169f4d3336b2bcd47b5a8515b2d83edff3db072aea:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22tl3d_rJa1gk66AaEbjcKD-eq-6qRoKlZ%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698314075.449022;s:12:"REQUEST_TIME";i:1698314075;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222224";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"e5a08a8e3b33c86ccc2d57b169f4d3336b2bcd47b5a8515b2d83edff3db072aea:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"tl3d_rJa1gk66AaEbjcKD-eq-6qRoKlZ"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"68";s:8:"identity";a:26:{s:2:"id";s:4:"'68'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U5s1ph'";s:8:"password";s:62:"'$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai'";s:8:"auth_key";s:34:"'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy'";s:12:"access_token";s:34:"'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222224'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698314013";s:10:"updated_at";s:10:"1698314013";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a375b86a7b";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698314075.449022;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533136;s:14:"processingTime";d:1.1980960369110107;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a376d2fb61.data b/runtime/debug/653a376d2fb61.data deleted file mode 100644 index 5b71771..0000000 --- a/runtime/debug/653a376d2fb61.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28899:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314093.172969;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314093.172992;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314093.19472;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698314093.197942;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314093.198356;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314093.198604;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314093.200037;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314093.200215;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314093.200766;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314093.2008;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698314093.203136;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314093.203147;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.223621;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314093.223672;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.228133;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.233057;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698314093.242791;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.248439;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.249405;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.250444;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.251072;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.252547;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.25321;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314093.259315;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698314093.259401;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.262726;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392480;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.265936;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478624;}i:59;a:6:{i:0;s:56:"User '68' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314094.117034;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477784;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698314094.11773;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504152;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314094.1185;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525840;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314094.11933;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533504;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314094.119499;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535760;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314094.119657;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537848;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314094.119809;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545736;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='5SKxPsE4pnW4oT') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.1201;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551408;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314094.120643;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553544;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.120887;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557472;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, '5SKxPsE4pnW4oT', '68', 1700906094, 0, 0, 1698314094)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.123644;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670128;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698314094.124685;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669064;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.156081;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702144;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.157657;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715904;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314094)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.159734;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742800;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.198916;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812632;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.200229;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848696;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.201723;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867608;}i:95;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314093206, 1698314094202, 996, 0, 1698314094)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.203325;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897896;}}}";s:9:"profiling";s:39195:"a:3:{s:6:"memory";i:8533136;s:4:"time";d:1.085101842880249;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314093.22369;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314093.225533;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.225566;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.226845;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.228168;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.228672;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.233084;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.233612;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.248475;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.249308;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.249432;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.250177;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.25047;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.250919;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.251097;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.251978;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.252573;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.252975;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.253234;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.253641;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.262758;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.263379;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.26596;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.266315;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='5SKxPsE4pnW4oT') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.120132;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='5SKxPsE4pnW4oT') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.120598;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.120912;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.122311;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, '5SKxPsE4pnW4oT', '68', 1700906094, 0, 0, 1698314094)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.123682;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, '5SKxPsE4pnW4oT', '68', 1700906094, 0, 0, 1698314094)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.124183;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.156211;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.157344;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.157689;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.158601;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314094)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.159763;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314094)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.196601;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.198949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.199615;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.200254;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.201282;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.201747;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.202193;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314093206, 1698314094202, 996, 0, 1698314094)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.203357;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314093206, 1698314094202, 996, 0, 1698314094)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.233807;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:2:"db";s:38394:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.225566;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.226845;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.228168;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.228672;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.233084;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.233612;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.248475;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.249308;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.249432;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.250177;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.25047;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.250919;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.251097;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.251978;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.252573;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.252975;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.253234;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.253641;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.262758;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.263379;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.26596;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314093.266315;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='5SKxPsE4pnW4oT') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.120132;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='5SKxPsE4pnW4oT') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.120598;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.120912;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.122311;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, '5SKxPsE4pnW4oT', '68', 1700906094, 0, 0, 1698314094)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.123682;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, '5SKxPsE4pnW4oT', '68', 1700906094, 0, 0, 1698314094)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.124183;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.156211;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.157344;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.157689;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.158601;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314094)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.159763;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314094)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.196601;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.198949;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.199615;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.200254;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.201282;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.201747;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314094.202193;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314093206, 1698314094202, 996, 0, 1698314094)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.203357;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314093206, 1698314094202, 996, 0, 1698314094)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314094.233807;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:5:"event";s:9742:"a:55:{i:0;a:5:{s:4:"time";d:1698314093.198592;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698314093.202525;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698314093.218561;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698314093.225524;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698314093.23366;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698314093.233716;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698314093.243166;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698314093.243181;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698314093.246888;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698314093.249353;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698314093.250986;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698314093.251016;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698314093.253677;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698314093.253741;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698314093.254103;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698314093.259355;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698314093.259374;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698314093.261935;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698314093.262036;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698314093.262499;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698314093.263415;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698314093.263484;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698314093.263507;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698314093.265126;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698314093.265504;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698314093.266348;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698314093.266411;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698314094.116916;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698314094.117062;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698314094.117756;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698314094.119967;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698314094.122347;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698314094.122412;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698314094.122617;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698314094.122636;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698314094.124667;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698314094.155332;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698314094.156008;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698314094.159321;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698314094.15958;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698314094.159597;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698314094.196719;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698314094.197351;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698314094.200183;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698314094.202392;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698314094.203104;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698314094.203122;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698314094.233926;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698314094.233971;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698314094.233984;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698314094.233994;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698314094.234008;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698314094.234019;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698314094.236797;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698314094.236873;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698314093.154648;s:3:"end";d:1698314094.240337;s:6:"memory";i:8533136;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1694:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203065;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203079;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203088;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203096;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203104;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203113;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203121;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314093.203126;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------850130839244606843577085";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=7e09a6838a240f69ff98f7bf5aa3cf959b124665f2b456c0a4b5e5fb2a83dde2a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22n5rwBNUa2bIME2VYbV4vO3Clb-ktm73F%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a376d2fb61";s:16:"X-Debug-Duration";s:5:"1,083";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a376d2fb61";s:10:"Set-Cookie";s:204:"_csrf=8dd04a77439c3501658144c2dfda0a62b85f8d4c49f2b22503868966fefb839aa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JO13c8SrodStIJEl73C4ymwASKS3rZhv%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49721";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------850130839244606843577085";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=7e09a6838a240f69ff98f7bf5aa3cf959b124665f2b456c0a4b5e5fb2a83dde2a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22n5rwBNUa2bIME2VYbV4vO3Clb-ktm73F%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698314093.139875;s:12:"REQUEST_TIME";i:1698314093;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222224";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"7e09a6838a240f69ff98f7bf5aa3cf959b124665f2b456c0a4b5e5fb2a83dde2a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"n5rwBNUa2bIME2VYbV4vO3Clb-ktm73F"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"68";s:8:"identity";a:26:{s:2:"id";s:4:"'68'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U5s1ph'";s:8:"password";s:62:"'$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai'";s:8:"auth_key";s:34:"'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy'";s:12:"access_token";s:34:"'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222224'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698314013";s:10:"updated_at";s:10:"1698314013";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a376d2fb61";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698314093.139875;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533136;s:14:"processingTime";d:1.085101842880249;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a376fbc66f.data b/runtime/debug/653a376fbc66f.data deleted file mode 100644 index dd8c52a..0000000 --- a/runtime/debug/653a376fbc66f.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28905:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314095.748841;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314095.74886;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314095.770978;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698314095.773901;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314095.774347;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314095.774624;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314095.776214;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314095.776428;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314095.777028;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314095.777066;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698314095.779489;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314095.7795;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.800523;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314095.800575;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.823703;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.829767;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698314095.838528;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.845036;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.84598;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.847212;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.847996;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.849658;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.850363;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314095.855821;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698314095.855883;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.859024;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392480;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.863206;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478624;}i:59;a:6:{i:0;s:56:"User '68' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314096.73775;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477784;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698314096.738458;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504152;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314096.739235;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525840;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314096.740059;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533504;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314096.740228;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535760;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314096.740387;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537848;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314096.740539;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545736;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='S6HvJA9rYctUxZ') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.740839;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551408;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314096.741418;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553544;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.741648;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557472;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'S6HvJA9rYctUxZ', '68', 1700906096, 0, 0, 1698314096)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.744539;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670128;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698314096.745563;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669064;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.772742;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702144;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.779788;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715904;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314096)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.781587;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742800;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.802652;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812632;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.803957;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848696;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.805525;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867608;}i:95;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314095782, 1698314096806, 1024, 0, 1698314096)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.807183;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897896;}}}";s:9:"profiling";s:39194:"a:3:{s:6:"memory";i:8533136;s:4:"time";d:1.1050400733947754;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314095.800594;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314095.802396;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.802425;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.822387;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.823739;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.824251;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.82981;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.830455;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.84508;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.845836;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.846009;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.846874;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.847241;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.847808;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.848022;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.849083;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.849685;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.85012;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.850387;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.8508;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.859048;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.85974;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.863244;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.863827;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='S6HvJA9rYctUxZ') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.740872;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='S6HvJA9rYctUxZ') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.741372;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.741673;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.743331;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'S6HvJA9rYctUxZ', '68', 1700906096, 0, 0, 1698314096)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.744571;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'S6HvJA9rYctUxZ', '68', 1700906096, 0, 0, 1698314096)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.745001;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.772782;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.779466;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.779819;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.780438;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314096)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.781616;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314096)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.800324;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.802685;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.803307;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.803984;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.805077;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.80555;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.806006;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314095782, 1698314096806, 1024, 0, 1698314096)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.807214;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314095782, 1698314096806, 1024, 0, 1698314096)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.830306;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:2:"db";s:38391:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.802425;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.822387;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.823739;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.824251;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.82981;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.830455;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.84508;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.845836;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.846009;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.846874;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.847241;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.847808;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.848022;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.849083;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.849685;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.85012;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.850387;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.8508;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.859048;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.85974;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.863244;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314095.863827;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='S6HvJA9rYctUxZ') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.740872;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='S6HvJA9rYctUxZ') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.741372;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.741673;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.743331;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'S6HvJA9rYctUxZ', '68', 1700906096, 0, 0, 1698314096)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.744571;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'S6HvJA9rYctUxZ', '68', 1700906096, 0, 0, 1698314096)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.745001;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.772782;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.779466;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.779819;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.780438;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314096)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.781616;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314096)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.800324;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.802685;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.803307;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.803984;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.805077;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.80555;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314096.806006;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314095782, 1698314096806, 1024, 0, 1698314096)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.807214;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:655:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314095782, 1698314096806, 1024, 0, 1698314096)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314096.830306;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:5:"event";s:9736:"a:55:{i:0;a:5:{s:4:"time";d:1698314095.774612;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698314095.778861;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698314095.795502;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698314095.802387;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698314095.830513;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698314095.83058;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698314095.838878;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698314095.838893;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698314095.842495;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698314095.845924;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698314095.847892;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698314095.847931;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698314095.850837;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698314095.850904;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698314095.851337;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698314095.855848;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698314095.855865;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698314095.858281;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698314095.858377;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698314095.858841;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698314095.85978;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698314095.85985;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698314095.859875;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698314095.862298;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698314095.86271;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698314095.86387;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698314095.863949;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698314096.737626;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698314096.737778;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698314096.738485;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698314096.740698;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698314096.743368;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698314096.743434;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698314096.743631;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698314096.743649;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698314096.745539;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698314096.772001;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698314096.772671;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698314096.78117;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698314096.781431;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698314096.781449;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698314096.80045;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698314096.801085;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698314096.803908;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698314096.806199;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698314096.806969;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698314096.806986;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698314096.830427;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698314096.830472;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698314096.830485;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698314096.830495;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698314096.830509;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698314096.83052;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698314096.833337;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698314096.833413;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698314095.730912;s:3:"end";d:1698314096.836431;s:6:"memory";i:8533136;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1692:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.779415;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.77943;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.77944;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.779448;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.779455;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.779464;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.779472;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314095.779477;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------066769390294427666214267";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=8dd04a77439c3501658144c2dfda0a62b85f8d4c49f2b22503868966fefb839aa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22JO13c8SrodStIJEl73C4ymwASKS3rZhv%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a376fbc66f";s:16:"X-Debug-Duration";s:5:"1,103";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a376fbc66f";s:10:"Set-Cookie";s:204:"_csrf=158112adccc1733022c1937772944a42eb5758a5592c9b69fbfedeae2c29885fa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22mlNeBReNgsD9Ly2gxQuakn89AsiOJlFI%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49726";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------066769390294427666214267";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=8dd04a77439c3501658144c2dfda0a62b85f8d4c49f2b22503868966fefb839aa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22JO13c8SrodStIJEl73C4ymwASKS3rZhv%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698314095.715845;s:12:"REQUEST_TIME";i:1698314095;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222224";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"8dd04a77439c3501658144c2dfda0a62b85f8d4c49f2b22503868966fefb839aa:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"JO13c8SrodStIJEl73C4ymwASKS3rZhv"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"68";s:8:"identity";a:26:{s:2:"id";s:4:"'68'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U5s1ph'";s:8:"password";s:62:"'$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai'";s:8:"auth_key";s:34:"'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy'";s:12:"access_token";s:34:"'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222224'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698314013";s:10:"updated_at";s:10:"1698314013";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a376fbc66f";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698314095.715845;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533136;s:14:"processingTime";d:1.1050400733947754;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a37723c49a.data b/runtime/debug/653a37723c49a.data deleted file mode 100644 index 89860ae..0000000 --- a/runtime/debug/653a37723c49a.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28905:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314098.223854;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314098.223872;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314098.246148;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698314098.250746;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314098.251177;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314098.25143;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314098.252925;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314098.253133;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314098.253705;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314098.253739;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698314098.25609;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314098.256101;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.277129;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314098.277173;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.28471;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.289769;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698314098.298726;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.304514;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.305297;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306344;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306966;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.308535;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.309195;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314098.314891;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698314098.314972;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.318349;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392480;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.323071;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478624;}i:59;a:6:{i:0;s:56:"User '68' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314099.180511;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477784;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698314099.181407;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504152;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314099.182821;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525840;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314099.184336;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533504;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314099.184566;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535760;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314099.184796;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537848;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314099.184967;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545736;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='pTp52IvT0EcVfE') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.185331;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551408;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314099.185911;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553544;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.186187;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557472;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'pTp52IvT0EcVfE', '68', 1700906099, 0, 0, 1698314099)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.188897;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670128;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698314099.18994;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669064;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.209301;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702144;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.210561;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715904;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314099)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.212051;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742800;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.232704;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812632;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.234489;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848696;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.235945;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867608;}i:95;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314098259, 1698314099236, 977, 0, 1698314099)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.237809;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897896;}}}";s:9:"profiling";s:39193:"a:3:{s:6:"memory";i:8533136;s:4:"time";d:1.080920934677124;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314098.277192;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314098.279066;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.279124;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.283329;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.284753;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.285302;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.289799;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.290299;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.30455;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.305202;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.305323;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306045;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306371;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306816;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306991;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.307965;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.308561;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.308963;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.309219;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.30969;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.318382;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.320411;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.323097;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.32346;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='pTp52IvT0EcVfE') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.185366;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='pTp52IvT0EcVfE') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.185864;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.186212;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.187572;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'pTp52IvT0EcVfE', '68', 1700906099, 0, 0, 1698314099)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.188931;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'pTp52IvT0EcVfE', '68', 1700906099, 0, 0, 1698314099)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.189316;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.209341;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.210284;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.210588;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.211102;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314099)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.212077;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314099)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.230282;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.23274;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.23365;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.234521;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.235491;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.235971;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.236563;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314098259, 1698314099236, 977, 0, 1698314099)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.237844;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314098259, 1698314099236, 977, 0, 1698314099)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.279895;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:2:"db";s:38391:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.279124;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.283329;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.284753;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.285302;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.289799;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.290299;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.30455;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.305202;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.305323;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306045;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306371;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306816;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.306991;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.307965;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.308561;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.308963;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.309219;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.30969;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.318382;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.320411;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.323097;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314098.32346;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='pTp52IvT0EcVfE') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.185366;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='pTp52IvT0EcVfE') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.185864;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.186212;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.187572;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'pTp52IvT0EcVfE', '68', 1700906099, 0, 0, 1698314099)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.188931;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'pTp52IvT0EcVfE', '68', 1700906099, 0, 0, 1698314099)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.189316;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.209341;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.210284;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.210588;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.211102;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314099)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.212077;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314099)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.230282;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.23274;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.23365;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.234521;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.235491;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.235971;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314099.236563;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314098259, 1698314099236, 977, 0, 1698314099)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.237844;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314098259, 1698314099236, 977, 0, 1698314099)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314099.279895;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:5:"event";s:9737:"a:55:{i:0;a:5:{s:4:"time";d:1698314098.251417;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698314098.255477;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698314098.272693;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698314098.279057;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698314098.29035;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698314098.290409;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698314098.29918;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698314098.299197;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698314098.302955;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698314098.305243;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698314098.306882;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698314098.306911;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698314098.309727;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698314098.309794;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698314098.310176;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698314098.314932;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698314098.314951;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698314098.317543;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698314098.317645;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698314098.318121;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698314098.320453;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698314098.320525;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698314098.32055;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698314098.322244;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698314098.322623;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698314098.323493;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698314098.323556;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698314099.180392;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698314099.180538;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698314099.181485;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698314099.185186;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698314099.187611;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698314099.187679;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698314099.187882;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698314099.1879;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698314099.189921;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698314099.208561;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698314099.209231;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698314099.211661;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698314099.211908;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698314099.211924;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698314099.230399;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698314099.231031;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698314099.234423;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698314099.236766;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698314099.237581;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698314099.2376;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698314099.280014;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698314099.280059;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698314099.280072;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698314099.280082;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698314099.280096;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698314099.280107;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698314099.283065;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698314099.283147;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698314098.205367;s:3:"end";d:1698314099.286801;s:6:"memory";i:8533136;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256019;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256033;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256042;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.25605;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256058;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256066;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256074;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314098.256079;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------040162730028280045562502";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=158112adccc1733022c1937772944a42eb5758a5592c9b69fbfedeae2c29885fa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22mlNeBReNgsD9Ly2gxQuakn89AsiOJlFI%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a37723c49a";s:16:"X-Debug-Duration";s:5:"1,079";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a37723c49a";s:10:"Set-Cookie";s:204:"_csrf=32381cd0baeeeea04eba5679532e8dfec34c3d8712065e97f65c9f1b436fa375a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22xtssconmJnjK4dq2wVZsQDpxTNV7hsHf%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49729";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------040162730028280045562502";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=158112adccc1733022c1937772944a42eb5758a5592c9b69fbfedeae2c29885fa:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22mlNeBReNgsD9Ly2gxQuakn89AsiOJlFI%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698314098.189733;s:12:"REQUEST_TIME";i:1698314098;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222224";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"158112adccc1733022c1937772944a42eb5758a5592c9b69fbfedeae2c29885fa:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"mlNeBReNgsD9Ly2gxQuakn89AsiOJlFI"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"68";s:8:"identity";a:26:{s:2:"id";s:4:"'68'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U5s1ph'";s:8:"password";s:62:"'$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai'";s:8:"auth_key";s:34:"'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy'";s:12:"access_token";s:34:"'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222224'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698314013";s:10:"updated_at";s:10:"1698314013";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a37723c49a";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698314098.189733;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533136;s:14:"processingTime";d:1.080920934677124;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a37788a480.data b/runtime/debug/653a37788a480.data deleted file mode 100644 index e5b6369..0000000 --- a/runtime/debug/653a37788a480.data +++ /dev/null @@ -1,351 +0,0 @@ -a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.46";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.46";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:28905:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314104.540651;i:4;a:0:{}i:5;i:2497176;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314104.54067;i:4;a:0:{}i:5;i:2498352;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314104.565458;i:4;a:0:{}i:5;i:4073584;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698314104.568659;i:4;a:0:{}i:5;i:4290032;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314104.569097;i:4;a:0:{}i:5;i:4292240;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314104.569349;i:4;a:0:{}i:5;i:4300424;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314104.570825;i:4;a:0:{}i:5;i:4372704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314104.571005;i:4;a:0:{}i:5;i:4373048;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698314104.571569;i:4;a:0:{}i:5;i:4397072;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314104.571603;i:4;a:0:{}i:5;i:4403464;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698314104.573996;i:4;a:0:{}i:5;i:4628712;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698314104.574007;i:4;a:0:{}i:5;i:4630344;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.597919;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6055432;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314104.59797;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6057864;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.602078;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6144176;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.607161;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6480744;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698314104.617207;i:4;a:0:{}i:5;i:6709728;}i:33;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.622942;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6986272;}i:36;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.623777;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6994528;}i:39;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.624825;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008376;}i:42;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.625507;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7012256;}i:45;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.627704;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7034352;}i:48;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.628794;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7042336;}i:51;a:6:{i:0;s:56:"User '65' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314104.634758;i:4;a:2:{i:0;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7282288;}i:52;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698314104.634833;i:4;a:0:{}i:5;i:7280040;}i:53;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.638106;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7392480;}i:56;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.641601;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7478624;}i:59;a:6:{i:0;s:56:"User '68' logged in from 127.0.0.1. Session not enabled.";i:1;i:4;i:2;s:19:"yii\web\User::login";i:3;d:1698314105.502633;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:82;s:8:"function";s:5:"login";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7477784;}i:60;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698314105.503389;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:64;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7504152;}i:61;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314105.504168;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7525840;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314105.505007;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:93;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7533504;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314105.505182;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:99;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7535760;}i:64;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314105.505342;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:127;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7537848;}i:65;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314105.505499;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:132;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:102;s:8:"function";s:9:"_generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7545736;}i:66;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J38Kgi9g0wUFMa') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.505793;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7551408;}i:69;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698314105.506315;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:105;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}}i:5;i:7553544;}i:70;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.506578;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7557472;}i:73;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J38Kgi9g0wUFMa', '68', 1700906105, 0, 0, 1698314105)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.509085;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670128;}i:76;a:6:{i:0;s:18:"Commit transaction";i:1;i:8;i:2;s:26:"yii\db\Transaction::commit";i:3;d:1698314105.509896;i:4;a:3:{i:0;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:89;s:8:"function";s:6:"commit";s:5:"class";s:18:"yii\db\Transaction";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7669064;}i:77;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.538733;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7702144;}i:80;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.539955;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7715904;}i:83;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314105)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.54145;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7742800;}i:86;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.560571;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7812632;}i:89;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.562385;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7848696;}i:92;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.564202;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7867608;}i:95;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314104579, 1698314105564, 985, 0, 1698314105)";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.56628;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7897896;}}}";s:9:"profiling";s:39195:"a:3:{s:6:"memory";i:8533136;s:4:"time";d:1.0798850059509277;s:8:"messages";a:44:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314104.597988;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6058992;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698314104.599733;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108152;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.59977;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.600774;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.602113;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.602599;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.607195;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.607844;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.622981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.623664;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.623803;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.624548;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.624852;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.625331;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.625539;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.62707;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.627736;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.628504;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.628823;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.629424;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.638135;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.63889;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.641631;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.642068;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J38Kgi9g0wUFMa') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.505825;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J38Kgi9g0wUFMa') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.506269;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.506603;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.507972;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J38Kgi9g0wUFMa', '68', 1700906105, 0, 0, 1698314105)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.509115;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J38Kgi9g0wUFMa', '68', 1700906105, 0, 0, 1698314105)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.509466;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.538773;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.539685;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.539982;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.540492;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314105)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.541483;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314105)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.558157;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.560606;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.561477;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.562419;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.563727;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.56423;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.564777;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314104579, 1698314105564, 985, 0, 1698314105)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.566317;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314104579, 1698314105564, 985, 0, 1698314105)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.596474;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:2:"db";s:38392:"a:1:{s:8:"messages";a:42:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.59977;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6108392;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.600774;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6124224;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.602113;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6147040;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.602599;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6149424;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.607195;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6481992;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.607844;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6488664;}i:34;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.622981;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6987840;}i:35;a:6:{i:0;s:119:"SELECT * FROM `cx_user_token` WHERE ((`is_delete`=0) AND (`token`='SF5fP6gUUrct1a') AND (`cx_mch_id`=0)) AND (`type`=3)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.623664;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6991528;}i:37;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.623803;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:6996648;}i:38;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_user_token`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.624548;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7008912;}i:40;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.624852;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7011992;}i:41;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_token' AND `kcu`.`TABLE_NAME` = 'cx_user_token'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.625331;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:216;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7015128;}i:43;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.625539;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7014376;}i:44;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.62707;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044520;}i:46;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.627736;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7037968;}i:47;a:6:{i:0;s:770:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.628504;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7041104;}i:49;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.628823;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7044088;}i:50;a:6:{i:0;s:78:"SELECT * FROM `cx_user` WHERE (`id`='65') AND (`is_delete`=0) AND (`status`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.629424;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:221;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:66:"D:\phpstudy_pro\WWW\cxfoot\modules\api\behaviors\LoginBehavior.php";s:4:"line";i:46;s:8:"function";s:18:"loginByAccessToken";s:5:"class";s:12:"yii\web\User";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:106;s:8:"function";s:12:"beforeAction";s:5:"class";s:18:"yii\web\Controller";s:4:"type";s:2:"->";}}i:5;i:7050520;}i:54;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.638135;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7394312;}i:55;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222224'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.63889;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:73;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7400064;}i:57;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.641631;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7479992;}i:58;a:6:{i:0;s:141:"SELECT * FROM `cx_user` WHERE ((`cx_mch_id`=0) AND (`is_delete`=0) AND (`status`=0)) AND ((`username`='U5s1ph') OR (`mobile_phone`='U5s1ph'))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314104.642068;i:4;a:3:{i:0;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:66;s:8:"function";s:3:"one";s:5:"class";s:18:"yii\db\ActiveQuery";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:86;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7486248;}i:67;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J38Kgi9g0wUFMa') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.505825;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7552368;}i:68;a:6:{i:0;s:132:"SELECT EXISTS(SELECT * FROM `cx_user_token` WHERE (`type`=3) AND (`token`='J38Kgi9g0wUFMa') AND (`is_delete`=0) AND (`cx_mch_id`=0))";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.506269;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:103;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:65;s:8:"function";s:8:"generate";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7554792;}i:71;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.506603;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7558808;}i:72;a:6:{i:0;s:118:"UPDATE `cx_user_token` SET `is_delete`=1 WHERE (`is_delete`=0) AND (`user_id`='68') AND (`cx_mch_id`=0) AND (`type`=3)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.507972;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:273;s:8:"function";s:9:"updateAll";s:5:"class";s:19:"yii\db\ActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:77;s:8:"function";s:7:"destory";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7560912;}i:74;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J38Kgi9g0wUFMa', '68', 1700906105, 0, 0, 1698314105)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.509115;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7670768;}i:75;a:6:{i:0;s:189:"INSERT INTO `cx_user_token` (`cx_mch_id`, `type`, `token`, `user_id`, `expire_time`, `status`, `is_delete`, `created_at`) VALUES (0, 3, 'J38Kgi9g0wUFMa', '68', 1700906105, 0, 0, 1698314105)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.509466;i:4;a:3:{i:0;a:5:{s:4:"file";s:47:"D:\phpstudy_pro\WWW\cxfoot\models\UserToken.php";s:4:"line";i:157;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\components\auth\AToken.php";s:4:"line";i:78;s:8:"function";s:13:"saveUserToken";s:5:"class";s:20:"app\models\UserToken";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:87;s:8:"function";s:21:"generate_access_token";s:5:"class";s:26:"app\components\auth\AToken";s:4:"type";s:2:"->";}}i:5;i:7672824;}i:78;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.538773;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7704288;}i:79;a:6:{i:0;s:42:"SHOW FULL COLUMNS FROM `cx_user_login_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.539685;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7716496;}i:81;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.539982;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7719520;}i:82;a:6:{i:0;s:790:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_user_login_log' AND `kcu`.`TABLE_NAME` = 'cx_user_login_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.540492;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:82;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7722656;}i:84;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314105)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.541483;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7743672;}i:85;a:6:{i:0;s:177:"INSERT INTO `cx_user_login_log` (`cx_mch_id`, `user_id`, `is_delete`, `ipv4`, `is_pass`, `err_msg`, `created_at`) VALUES (0, '68', 0, '127.0.0.1', 1, '登录成功', 1698314105)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.558157;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\models\log\UserLoginLog.php";s:4:"line";i:88;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:333;s:8:"function";s:6:"logger";s:5:"class";s:27:"app\models\log\UserLoginLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:90;s:8:"function";s:9:"lastLogin";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7745784;}i:87;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.560606;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7814200;}i:88;a:6:{i:0;s:114:"SELECT * FROM `cx_user_oauth` WHERE ((`type`='wxmp') AND (`is_delete`=0) AND (`cx_mch_id`=0)) AND (`user_id`='68')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.561477;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:432;s:8:"function";s:5:"__get";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:59:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\LoginForm.php";s:4:"line";i:92;s:8:"function";s:9:"bindQuery";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:80;s:8:"function";s:5:"login";s:5:"class";s:32:"app\modules\api\models\LoginForm";s:4:"type";s:2:"->";}}i:5;i:7816952;}i:90;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.562419;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7850816;}i:91;a:6:{i:0;s:35:"SHOW FULL COLUMNS FROM `cx_api_log`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.563727;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7873776;}i:93;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.56423;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7871224;}i:94;a:6:{i:0;s:776:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_api_log' AND `kcu`.`TABLE_NAME` = 'cx_api_log'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698314105.564777;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:103;s:8:"function";s:5:"__set";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7874360;}i:96;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314104579, 1698314105564, 985, 0, 1698314105)";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.566317;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7896256;}i:97;a:6:{i:0;s:654:"INSERT INTO `cx_api_log` (`cx_mch_id`, `user_id`, `route`, `module_id`, `controller_id`, `action_id`, `url`, `method`, `method_param`, `ipv4`, `is_pass`, `request_date`, `request_time`, `response_time`, `process_consume_time`, `is_delete`, `created_at`) VALUES (0, '68', 'api/user/modify-user', 'api', 'user', 'modify-user', '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124', 'POST', '{\"real_name\":\"王五\",\"gender\":\"1\",\"is_view\":\"42.5\",\"mobile_phone\":\"18222222224\"}', '127.0.0.1', 1, '2023-10-26', 1698314104579, 1698314105564, 985, 0, 1698314105)";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698314105.596474;i:4;a:3:{i:0;a:5:{s:4:"file";s:48:"D:\phpstudy_pro\WWW\cxfoot\models\log\ApiLog.php";s:4:"line";i:125;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:128;s:8:"function";s:6:"logger";s:5:"class";s:21:"app\models\log\ApiLog";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:53:"D:\phpstudy_pro\WWW\cxfoot\controllers\Controller.php";s:4:"line";i:95;s:8:"function";s:6:"filter";s:5:"class";s:26:"app\controllers\Controller";s:4:"type";s:2:"->";}}i:5;i:7898912;}}}";s:5:"event";s:9743:"a:55:{i:0;a:5:{s:4:"time";d:1698314104.569338;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698314104.573361;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698314104.591145;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698314104.599722;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698314104.607894;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698314104.608009;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698314104.617583;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698314104.617598;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698314104.621305;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:9;a:5:{s:4:"time";d:1698314104.623726;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:10;a:5:{s:4:"time";d:1698314104.625408;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:11;a:5:{s:4:"time";d:1698314104.625444;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698314104.629474;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:13;a:5:{s:4:"time";d:1698314104.629554;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:14;a:5:{s:4:"time";d:1698314104.630056;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:15;a:5:{s:4:"time";d:1698314104.634796;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:16;a:5:{s:4:"time";d:1698314104.634813;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:17;a:5:{s:4:"time";d:1698314104.637309;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:18;a:5:{s:4:"time";d:1698314104.637407;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:19;a:5:{s:4:"time";d:1698314104.637882;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698314104.638926;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:21;a:5:{s:4:"time";d:1698314104.638995;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:22;a:5:{s:4:"time";d:1698314104.639018;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:23;a:5:{s:4:"time";d:1698314104.640746;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:32:"app\modules\api\models\LoginForm";}i:24;a:5:{s:4:"time";d:1698314104.641146;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:25;a:5:{s:4:"time";d:1698314104.64211;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:26;a:5:{s:4:"time";d:1698314104.642182;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:27;a:5:{s:4:"time";d:1698314105.502509;s:4:"name";s:11:"beforeLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:28;a:5:{s:4:"time";d:1698314105.502661;s:4:"name";s:10:"afterLogin";s:5:"class";s:17:"yii\web\UserEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\User";}i:29;a:5:{s:4:"time";d:1698314105.503421;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:30;a:5:{s:4:"time";d:1698314105.505659;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:31;a:5:{s:4:"time";d:1698314105.508011;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:32;a:5:{s:4:"time";d:1698314105.508076;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:33;a:5:{s:4:"time";d:1698314105.508283;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:34;a:5:{s:4:"time";d:1698314105.508302;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:35;a:5:{s:4:"time";d:1698314105.509879;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"app\models\UserToken";}i:36;a:5:{s:4:"time";d:1698314105.537987;s:4:"name";s:17:"commitTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:37;a:5:{s:4:"time";d:1698314105.538661;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:38;a:5:{s:4:"time";d:1698314105.541055;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:39;a:5:{s:4:"time";d:1698314105.541304;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:40;a:5:{s:4:"time";d:1698314105.541321;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:41;a:5:{s:4:"time";d:1698314105.558278;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\log\UserLoginLog";}i:42;a:5:{s:4:"time";d:1698314105.558924;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:43;a:5:{s:4:"time";d:1698314105.562317;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:44;a:5:{s:4:"time";d:1698314105.564998;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:45;a:5:{s:4:"time";d:1698314105.566047;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:46;a:5:{s:4:"time";d:1698314105.566066;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:47;a:5:{s:4:"time";d:1698314105.596593;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:21:"app\models\log\ApiLog";}i:48;a:5:{s:4:"time";d:1698314105.596639;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:49;a:5:{s:4:"time";d:1698314105.596652;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:50;a:5:{s:4:"time";d:1698314105.596661;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:51;a:5:{s:4:"time";d:1698314105.596676;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:52;a:5:{s:4:"time";d:1698314105.596687;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:53;a:5:{s:4:"time";d:1698314105.599519;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:54;a:5:{s:4:"time";d:1698314105.599597;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698314104.522279;s:3:"end";d:1698314105.602641;s:6:"memory";i:8533136;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573922;i:4;a:0:{}i:5;i:4623120;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573937;i:4;a:0:{}i:5;i:4623872;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573947;i:4;a:0:{}i:5;i:4624624;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573955;i:4;a:0:{}i:5;i:4625376;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573963;i:4;a:0:{}i:5;i:4626128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573971;i:4;a:0:{}i:5;i:4626880;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.57398;i:4;a:0:{}i:5;i:4627632;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698314104.573985;i:4;a:0:{}i:5;i:4628648;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:5297:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------418434781434633091797711";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=32381cd0baeeeea04eba5679532e8dfec34c3d8712065e97f65c9f1b436fa375a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22xtssconmJnjK4dq2wVZsQDpxTNV7hsHf%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:6:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:31:"application/json; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653a37788a480";s:16:"X-Debug-Duration";s:5:"1,078";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653a37788a480";s:10:"Set-Cookie";s:204:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22%3B%7D; path=/; HttpOnly; SameSite=Lax";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"49733";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------418434781434633091797711";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=32381cd0baeeeea04eba5679532e8dfec34c3d8712065e97f65c9f1b436fa375a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%22xtssconmJnjK4dq2wVZsQDpxTNV7hsHf%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698314104.50625;s:12:"REQUEST_TIME";i:1698314104;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222224";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"32381cd0baeeeea04eba5679532e8dfec34c3d8712065e97f65c9f1b436fa375a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"xtssconmJnjK4dq2wVZsQDpxTNV7hsHf"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2943:"a:5:{s:2:"id";s:2:"68";s:8:"identity";a:26:{s:2:"id";s:4:"'68'";s:9:"cx_mch_id";s:3:"'0'";s:8:"username";s:8:"'U5s1ph'";s:8:"password";s:62:"'$2y$13$x0iezfvj5/IfSaINjFFbiukbuijauI3o5J8l5mQULSfRJVl3pKdai'";s:8:"auth_key";s:34:"'liY1fP0zXFG2uKuLwwwZayJdE3iwgAWy'";s:12:"access_token";s:34:"'g5ip-OjtpkZEnjlh1bDwNz3zuoYDBQ2l'";s:8:"nickname";s:8:"'王五'";s:10:"avatar_url";s:28:"'/statics/images/avatar.jpg'";s:12:"mobile_phone";s:13:"'18222222224'";s:13:"mobile_prefix";s:4:"'86'";s:5:"email";s:2:"''";s:9:"real_name";s:8:"'王五'";s:4:"desc";s:2:"''";s:6:"gender";s:1:"1";s:8:"birthday";s:4:"null";s:6:"status";s:1:"0";s:9:"parent_id";s:3:"'0'";s:12:"is_modify_un";s:1:"0";s:9:"is_delete";s:1:"0";s:10:"country_id";s:1:"0";s:7:"city_id";s:1:"0";s:10:"created_at";s:10:"1698314013";s:10:"updated_at";s:10:"1698314013";s:4:"type";s:1:"0";s:8:"store_id";s:1:"0";s:7:"is_view";s:6:"'42.5'";}s:10:"attributes";a:26:{i:0;a:2:{s:9:"attribute";s:2:"id";s:5:"label";s:2:"ID";}i:1;a:2:{s:9:"attribute";s:9:"cx_mch_id";s:5:"label";s:14:"平台商户ID";}i:2;a:2:{s:9:"attribute";s:8:"username";s:5:"label";s:9:"用户名";}i:3;a:2:{s:9:"attribute";s:8:"password";s:5:"label";s:6:"密码";}i:4;a:2:{s:9:"attribute";s:8:"auth_key";s:5:"label";s:8:"AUTH_KEY";}i:5;a:2:{s:9:"attribute";s:12:"access_token";s:5:"label";s:12:"ACCESS_TOKEN";}i:6;a:2:{s:9:"attribute";s:8:"nickname";s:5:"label";s:6:"昵称";}i:7;a:2:{s:9:"attribute";s:10:"avatar_url";s:5:"label";s:6:"头像";}i:8;a:2:{s:9:"attribute";s:12:"mobile_phone";s:5:"label";s:9:"手机号";}i:9;a:2:{s:9:"attribute";s:13:"mobile_prefix";s:5:"label";s:21:"手机号国家代码";}i:10;a:2:{s:9:"attribute";s:5:"email";s:5:"label";s:6:"邮箱";}i:11;a:2:{s:9:"attribute";s:9:"real_name";s:5:"label";s:12:"真实姓名";}i:12;a:2:{s:9:"attribute";s:4:"desc";s:5:"label";s:12:"个性签名";}i:13;a:2:{s:9:"attribute";s:6:"gender";s:5:"label";s:33:"性别,0=女,1=男,2=保密";}i:14;a:2:{s:9:"attribute";s:8:"birthday";s:5:"label";s:6:"生日";}i:15;a:2:{s:9:"attribute";s:6:"status";s:5:"label";s:50:"状态,0=正常,1=封禁,2=挂起,3=注销";}i:16;a:2:{s:9:"attribute";s:9:"parent_id";s:5:"label";s:9:"PARENT_ID";}i:17;a:2:{s:9:"attribute";s:12:"is_modify_un";s:5:"label";s:43:"用户名是否可以修改,0=否,1=是";}i:18;a:2:{s:9:"attribute";s:9:"is_delete";s:5:"label";s:28:"是否删除,0=否,1=是";}i:19;a:2:{s:9:"attribute";s:10:"country_id";s:5:"label";s:8:"国家ID";}i:20;a:2:{s:9:"attribute";s:7:"city_id";s:5:"label";s:8:"城市ID";}i:21;a:2:{s:9:"attribute";s:10:"created_at";s:5:"label";s:12:"添加时间";}i:22;a:2:{s:9:"attribute";s:10:"updated_at";s:5:"label";s:12:"更新时间";}i:23;a:2:{s:9:"attribute";s:4:"type";s:5:"label";s:28:"0=普通用户,1=管理员";}i:24;a:2:{s:9:"attribute";s:8:"store_id";s:5:"label";s:8:"Store Id";}i:25;a:2:{s:9:"attribute";s:7:"is_view";s:5:"label";s:6:"鞋码";}}s:13:"rolesProvider";N;s:19:"permissionsProvider";N;}";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a37788a480";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698314104.50625;s:10:"statusCode";i:200;s:8:"sqlCount";i:21;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:8533136;s:14:"processingTime";d:1.0798850059509277;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a7dc7cb6ab.data b/runtime/debug/653a7dc7cb6ab.data deleted file mode 100644 index d148d90..0000000 --- a/runtime/debug/653a7dc7cb6ab.data +++ /dev/null @@ -1,13 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:3360:"a:1:{s:8:"messages";a:15:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698332103.82522;i:4;a:0:{}i:5;i:2456720;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698332103.825236;i:4;a:0:{}i:5;i:2457896;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698332103.832861;i:4;a:0:{}i:5;i:3703488;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698332103.834246;i:4;a:0:{}i:5;i:3902216;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698332103.834385;i:4;a:0:{}i:5;i:3904456;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698332103.835109;i:4;a:0:{}i:5;i:4118968;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698332103.835835;i:4;a:0:{}i:5;i:4192688;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698332103.835941;i:4;a:0:{}i:5;i:4193520;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698332103.836169;i:4;a:0:{}i:5;i:4217696;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698332103.836192;i:4;a:0:{}i:5;i:4224088;}i:18;a:6:{i:0;s:31:"Route requested: 'api/library/'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698332103.837419;i:4;a:0:{}i:5;i:4437120;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698332103.837426;i:4;a:0:{}i:5;i:4438736;}i:20;a:6:{i:0;s:933:"yii\base\InvalidRouteException: Unable to resolve the request "api/library/". in /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Module.php:561 -Stack trace: -#0 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/web/Application.php(103): yii\base\Module->runAction('api/library/', Array) -#1 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#2 /www/wwwroot/app.3dxh.dev.1nww.com/web/index.php(11): yii\base\Application->run() -#3 {main} - -Next yii\web\NotFoundHttpException: 页面未找到。 in /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/web/Application.php:115 -Stack trace: -#0 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#1 /www/wwwroot/app.3dxh.dev.1nww.com/web/index.php(11): yii\base\Application->run() -#2 {main}";i:1;i:1;i:2;s:25:"yii\web\HttpException:404";i:3;d:1698332103.8384;i:4;a:0:{}i:5;i:4271544;}i:21;a:6:{i:0;s:104:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/views/errorHandler/error.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698332103.83933;i:4;a:0:{}i:5;i:4387760;}i:22;a:6:{i:0;s:102:"Access to debugger is denied due to IP address restriction. The requesting IP address is 34.79.210.182";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698332103.840645;i:4;a:0:{}i:5;i:4557616;}}}";s:9:"profiling";s:83:"a:3:{s:6:"memory";i:4846264;s:4:"time";d:0.02556896209716797;s:8:"messages";a:0:{}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:1696:"a:10:{i:0;a:5:{s:4:"time";d:1698332103.835098;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698332103.837163;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698332103.839326;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:3;a:5:{s:4:"time";d:1698332103.839438;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:4;a:5:{s:4:"time";d:1698332103.839473;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698332103.839479;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698332103.839506;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:7;a:5:{s:4:"time";d:1698332103.839513;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:8;a:5:{s:4:"time";d:1698332103.840658;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:9;a:5:{s:4:"time";d:1698332103.840685;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698332103.816564;s:3:"end";d:1698332103.84215;s:6:"memory";i:4846264;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1617:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837382;i:4;a:0:{}i:5;i:4431504;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837391;i:4;a:0:{}i:5;i:4432296;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837396;i:4;a:0:{}i:5;i:4433128;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837399;i:4;a:0:{}i:5;i:4433912;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837402;i:4;a:0:{}i:5;i:4434744;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837407;i:4;a:0:{}i:5;i:4435560;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.83741;i:4;a:0:{}i:5;i:4436368;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698332103.837412;i:4;a:0:{}i:5;i:4437384;}}s:5:"route";s:12:"api/library/";s:6:"action";N;}";s:7:"request";s:2376:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:404;s:14:"requestHeaders";a:4:{s:15:"accept-encoding";s:4:"gzip";s:6:"accept";s:3:"*/*";s:10:"user-agent";s:110:"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36";s:4:"host";s:13:"124.71.161.49";}s:15:"responseHeaders";a:1:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";}s:5:"route";s:12:"api/library/";s:6:"action";N;s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:38:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:13:"/api/library/";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:13:"/api/library/";s:11:"REMOTE_PORT";s:5:"38868";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:13:"34.79.210.182";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:20:"HTTP_ACCEPT_ENCODING";s:4:"gzip";s:11:"HTTP_ACCEPT";s:3:"*/*";s:15:"HTTP_USER_AGENT";s:110:"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36";s:9:"HTTP_HOST";s:13:"124.71.161.49";s:17:"proxy-nokeepalive";s:1:"1";s:11:"SSL_TLS_SNI";s:13:"124.71.161.49";s:5:"HTTPS";s:2:"on";s:15:"REDIRECT_STATUS";s:3:"200";s:20:"REDIRECT_SSL_TLS_SNI";s:13:"124.71.161.49";s:14:"REDIRECT_HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698332103.812034;s:12:"REQUEST_TIME";i:1698332103;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a7dc7cb6ab";s:3:"url";s:34:"https://124.71.161.49/api/library/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"34.79.210.182";s:4:"time";d:1698332103.812034;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4846264;s:14:"processingTime";d:0.02556896209716797;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a943511520.data b/runtime/debug/653a943511520.data deleted file mode 100644 index f67318f..0000000 --- a/runtime/debug/653a943511520.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:4701:"a:1:{s:8:"messages";a:18:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698337845.063015;i:4;a:0:{}i:5;i:2457088;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698337845.06303;i:4;a:0:{}i:5;i:2458264;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698337845.070592;i:4;a:0:{}i:5;i:3703856;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698337845.071981;i:4;a:0:{}i:5;i:3902584;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.072109;i:4;a:0:{}i:5;i:3904824;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.072809;i:4;a:0:{}i:5;i:4119336;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.073542;i:4;a:0:{}i:5;i:4193056;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698337845.073647;i:4;a:0:{}i:5;i:4193888;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698337845.073892;i:4;a:0:{}i:5;i:4218064;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.073916;i:4;a:0:{}i:5;i:4224456;}i:18;a:6:{i:0;s:24:"Route requested: 'admin'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698337845.07507;i:4;a:0:{}i:5;i:4437936;}i:19;a:6:{i:0;s:21:"Loading module: admin";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698337845.075076;i:4;a:0:{}i:5;i:4439488;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.084597;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5827160;}i:21;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698337845.084628;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5829592;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.158445;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5881248;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.163607;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6224944;}i:32;a:6:{i:0;s:33:"Route to run: admin/default/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698337845.168977;i:4;a:0:{}i:5;i:6451200;}i:33;a:6:{i:0;s:101:"Access to debugger is denied due to IP address restriction. The requesting IP address is 49.234.35.33";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698337845.171598;i:4;a:1:{i:0;a:5:{s:4:"file";s:76:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/behaviors/LoginBehavior.php";s:4:"line";i:57;s:8:"function";s:4:"send";s:5:"class";s:16:"yii\web\Response";s:4:"type";s:2:"->";}}i:5;i:6828296;}}}";s:9:"profiling";s:4607:"a:3:{s:6:"memory";i:6859112;s:4:"time";d:0.1197519302368164;s:8:"messages";a:8:{i:22;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698337845.084636;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5830720;}i:23;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698337845.154126;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5843384;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.154164;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5843624;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.15784;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5859248;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.158473;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5884192;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.161288;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5886576;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.163632;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6226192;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.166249;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6236728;}}}";s:2:"db";s:3760:"a:1:{s:8:"messages";a:6:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.154164;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5843624;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.15784;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5859248;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.158473;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5884192;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.161288;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5886576;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.163632;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6226192;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.166249;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6236728;}}}";s:5:"event";s:2094:"a:12:{i:0;a:5:{s:4:"time";d:1698337845.072783;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698337845.074785;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698337845.081909;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698337845.154114;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698337845.16629;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698337845.166341;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698337845.169062;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698337845.169071;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\admin\Module";}i:8;a:5:{s:4:"time";d:1698337845.171431;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:9;a:5:{s:4:"time";d:1698337845.171613;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:10;a:5:{s:4:"time";d:1698337845.17164;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:11;a:5:{s:4:"time";d:1698337845.171648;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698337845.053543;s:3:"end";d:1698337845.173339;s:6:"memory";i:6859112;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075033;i:4;a:0:{}i:5;i:4432320;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075043;i:4;a:0:{}i:5;i:4433112;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075047;i:4;a:0:{}i:5;i:4433944;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075051;i:4;a:0:{}i:5;i:4434728;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075054;i:4;a:0:{}i:5;i:4435560;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075058;i:4;a:0:{}i:5;i:4436376;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075061;i:4;a:0:{}i:5;i:4437184;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.075063;i:4;a:0:{}i:5;i:4438200;}}s:5:"route";s:19:"admin/default/index";s:6:"action";s:62:"app\modules\admin\controllers\DefaultController::actionIndex()";}";s:7:"request";s:2844:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:302;s:14:"requestHeaders";a:5:{s:4:"host";s:21:"app.3dxh.dev.1nww.com";s:15:"accept-encoding";s:23:"gzip, deflate, br, zstd";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36";s:15:"accept-language";s:2:"en";s:6:"accept";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";}s:15:"responseHeaders";a:2:{s:8:"Location";s:105:"https://app.3dxh.dev.1nww.com/admin/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fadmin";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";}s:5:"route";s:19:"admin/default/index";s:6:"action";s:62:"app\modules\admin\controllers\DefaultController::actionIndex()";s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:39:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:6:"/admin";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:6:"/admin";s:11:"REMOTE_PORT";s:5:"64698";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:12:"49.234.35.33";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:21:"app.3dxh.dev.1nww.com";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:67:"
Apache Server at app.3dxh.dev.1nww.com Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:9:"HTTP_HOST";s:21:"app.3dxh.dev.1nww.com";s:20:"HTTP_ACCEPT_ENCODING";s:23:"gzip, deflate, br, zstd";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36";s:20:"HTTP_ACCEPT_LANGUAGE";s:2:"en";s:11:"HTTP_ACCEPT";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";s:17:"proxy-nokeepalive";s:1:"1";s:11:"SSL_TLS_SNI";s:21:"app.3dxh.dev.1nww.com";s:5:"HTTPS";s:2:"on";s:15:"REDIRECT_STATUS";s:3:"200";s:20:"REDIRECT_SSL_TLS_SNI";s:21:"app.3dxh.dev.1nww.com";s:14:"REDIRECT_HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698337845.047163;s:12:"REQUEST_TIME";i:1698337845;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a943511520";s:3:"url";s:35:"https://app.3dxh.dev.1nww.com/admin";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:12:"49.234.35.33";s:4:"time";d:1698337845.047163;s:10:"statusCode";i:302;s:8:"sqlCount";i:3;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6859112;s:14:"processingTime";d:0.1197519302368164;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a9435a1eb7.data b/runtime/debug/653a9435a1eb7.data deleted file mode 100644 index 83cab41..0000000 --- a/runtime/debug/653a9435a1eb7.data +++ /dev/null @@ -1,142 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:25361:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698337845.655105;i:4;a:0:{}i:5;i:2458888;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698337845.655119;i:4;a:0:{}i:5;i:2460064;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698337845.662895;i:4;a:0:{}i:5;i:3705656;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698337845.664298;i:4;a:0:{}i:5;i:3904384;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.664436;i:4;a:0:{}i:5;i:3906624;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.66518;i:4;a:0:{}i:5;i:4121136;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.665886;i:4;a:0:{}i:5;i:4194856;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698337845.666019;i:4;a:0:{}i:5;i:4195688;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698337845.666236;i:4;a:0:{}i:5;i:4219864;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.666259;i:4;a:0:{}i:5;i:4226256;}i:18;a:6:{i:0;s:39:"Route requested: 'admin/passport/login'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698337845.667455;i:4;a:0:{}i:5;i:4440080;}i:19;a:6:{i:0;s:21:"Loading module: admin";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698337845.667462;i:4;a:0:{}i:5;i:4441704;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.675785;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5831312;}i:21;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698337845.675847;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5833744;}i:26;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.725639;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5885400;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.730818;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6229096;}i:32;a:6:{i:0;s:34:"Route to run: admin/passport/login";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698337845.736657;i:4;a:0:{}i:5;i:6515808;}i:33;a:6:{i:0;s:79:"Running action: app\modules\admin\controllers\PassportController::actionLogin()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698337845.736787;i:4;a:0:{}i:5;i:6525488;}i:34;a:6:{i:0;s:94:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698337845.738239;i:4;a:1:{i:0;a:5:{s:4:"file";s:83:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/PassportController.php";s:4:"line";i:44;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6772048;}i:35;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.73891;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6886816;}i:36;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.739223;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6894608;}i:37;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.739391;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6901024;}i:40;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.742581;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6913608;}i:43;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.745562;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6918952;}i:46;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.748291;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6922640;}i:47;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.748417;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6922944;}i:48;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.748611;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6929912;}i:51;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.751264;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6933384;}i:52;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.751374;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6933904;}i:53;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.751562;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6941512;}i:56;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.754186;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6944984;}i:57;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.754338;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6946440;}i:58;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.754515;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6953216;}i:61;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.757093;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6956736;}i:62;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.757173;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6957208;}i:63;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.757346;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6964176;}i:66;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.759946;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6973280;}i:67;a:6:{i:0;s:96:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698337845.760726;i:4;a:1:{i:0;a:5:{s:4:"file";s:83:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/PassportController.php";s:4:"line";i:44;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6991440;}i:68;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.764117;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7566384;}i:69;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.764365;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7573352;}i:72;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.767009;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7578104;}i:73;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.76711;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7578624;}i:74;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.767281;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7585400;}i:77;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698337845.769885;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7589088;}i:78;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 182.254.171.71";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698337845.771842;i:4;a:2:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:36;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:83:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/PassportController.php";s:4:"line";i:44;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7817576;}i:79;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 182.254.171.71";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698337845.772247;i:4;a:0:{}i:5;i:7787520;}}}";s:9:"profiling";s:20421:"a:3:{s:6:"memory";i:7844568;s:4:"time";d:0.12731599807739258;s:8:"messages";a:26:{i:22;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698337845.675857;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5834872;}i:23;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698337845.722042;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5847536;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.722086;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5847776;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.725042;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5863400;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.72568;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5888344;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.728403;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5890728;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.730854;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6230344;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.733416;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6240880;}i:38;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.739411;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6903144;}i:39;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.742436;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6913088;}i:41;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.742609;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6917304;}i:42;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.745397;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6920440;}i:44;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.745579;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6920704;}i:45;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.748156;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6923800;}i:49;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.748628;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6931664;}i:50;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.751169;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6934712;}i:54;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.751585;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6943264;}i:55;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.754089;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6946312;}i:59;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.754529;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6954968;}i:60;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.757011;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6958024;}i:64;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.757373;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6965928;}i:65;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.759865;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6974608;}i:70;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.764386;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7575104;}i:71;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.766906;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7578152;}i:75;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.767298;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587152;}i:76;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.769763;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7590248;}}}";s:2:"db";s:19573:"a:1:{s:8:"messages";a:24:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.722086;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5847776;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.725042;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5863400;}i:27;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.72568;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5888344;}i:28;a:6:{i:0;s:782:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.728403;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:5890728;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.730854;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6230344;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.733416;i:4;a:1:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/controllers/Controller.php";s:4:"line";i:45;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6240880;}i:38;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.739411;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6903144;}i:39;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.742436;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6913088;}i:41;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.742609;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6917304;}i:42;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.745397;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6920440;}i:44;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.745579;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6920704;}i:45;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.748156;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6923800;}i:49;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.748628;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6931664;}i:50;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.751169;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:22;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6934712;}i:54;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.751585;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6943264;}i:55;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.754089;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:24;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6946312;}i:59;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.754529;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6954968;}i:60;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.757011;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6958024;}i:64;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.757373;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6965928;}i:65;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.759865;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/passport/login.php";s:4:"line";i:62;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6974608;}i:70;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.764386;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7575104;}i:71;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.766906;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7578152;}i:75;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.767298;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7587152;}i:76;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698337845.769763;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/admin/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7590248;}}}";s:5:"event";s:8249:"a:48:{i:0;a:5:{s:4:"time";d:1698337845.665169;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698337845.667201;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698337845.673455;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698337845.722031;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698337845.733459;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698337845.733505;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698337845.736743;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698337845.736753;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\admin\Module";}i:8;a:5:{s:4:"time";d:1698337845.736766;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\admin\controllers\PassportController";}i:9;a:5:{s:4:"time";d:1698337845.738233;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698337845.739324;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:11;a:5:{s:4:"time";d:1698337845.748197;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:12;a:5:{s:4:"time";d:1698337845.748235;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:13;a:5:{s:4:"time";d:1698337845.748489;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698337845.751197;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698337845.751227;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:16;a:5:{s:4:"time";d:1698337845.75145;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698337845.754117;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698337845.754145;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:19;a:5:{s:4:"time";d:1698337845.754407;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:20;a:5:{s:4:"time";d:1698337845.757036;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:21;a:5:{s:4:"time";d:1698337845.757063;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:22;a:5:{s:4:"time";d:1698337845.757245;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:23;a:5:{s:4:"time";d:1698337845.75989;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:24;a:5:{s:4:"time";d:1698337845.759914;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:25;a:5:{s:4:"time";d:1698337845.760492;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:26;a:5:{s:4:"time";d:1698337845.760624;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:27;a:5:{s:4:"time";d:1698337845.760642;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:28;a:5:{s:4:"time";d:1698337845.760672;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:29;a:5:{s:4:"time";d:1698337845.760724;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:30;a:5:{s:4:"time";d:1698337845.76174;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:31;a:5:{s:4:"time";d:1698337845.764244;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:32;a:5:{s:4:"time";d:1698337845.766941;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:33;a:5:{s:4:"time";d:1698337845.766977;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:34;a:5:{s:4:"time";d:1698337845.767174;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:35;a:5:{s:4:"time";d:1698337845.769791;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:36;a:5:{s:4:"time";d:1698337845.769854;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:37;a:5:{s:4:"time";d:1698337845.769987;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:38;a:5:{s:4:"time";d:1698337845.771866;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:39;a:5:{s:4:"time";d:1698337845.771964;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:40;a:5:{s:4:"time";d:1698337845.77201;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:41;a:5:{s:4:"time";d:1698337845.772024;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\admin\controllers\PassportController";}i:42;a:5:{s:4:"time";d:1698337845.772032;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\admin\Module";}i:43;a:5:{s:4:"time";d:1698337845.772037;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:44;a:5:{s:4:"time";d:1698337845.772045;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:45;a:5:{s:4:"time";d:1698337845.772051;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:46;a:5:{s:4:"time";d:1698337845.772256;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:47;a:5:{s:4:"time";d:1698337845.772305;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698337845.646014;s:3:"end";d:1698337845.773509;s:6:"memory";i:7844568;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1695:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667418;i:4;a:0:{}i:5;i:4434136;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667427;i:4;a:0:{}i:5;i:4434928;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667432;i:4;a:0:{}i:5;i:4435760;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667435;i:4;a:0:{}i:5;i:4436544;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667439;i:4;a:0:{}i:5;i:4437376;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667443;i:4;a:0:{}i:5;i:4438192;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667446;i:4;a:0:{}i:5;i:4439000;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698337845.667448;i:4;a:0:{}i:5;i:4440016;}}s:5:"route";s:20:"admin/passport/login";s:6:"action";s:63:"app\modules\admin\controllers\PassportController::actionLogin()";}";s:7:"request";s:3248:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:5:{s:4:"host";s:21:"app.3dxh.dev.1nww.com";s:15:"accept-encoding";s:23:"gzip, deflate, br, zstd";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36";s:15:"accept-language";s:2:"en";s:6:"accept";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=014e87a70d636c44db38f4f206fea293cfa038b56d093327e0f3777489991d27a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%224OmShu6EbDnKSW-jFXsH1L2T_gQIju9Z%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:20:"admin/passport/login";s:6:"action";s:63:"app\modules\admin\controllers\PassportController::actionLogin()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:40:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:76:"/admin/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fadmin";s:12:"QUERY_STRING";s:54:"return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fadmin";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:54:"return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fadmin";s:12:"REDIRECT_URL";s:21:"/admin/passport/login";s:11:"REMOTE_PORT";s:5:"32442";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"182.254.171.71";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:21:"app.3dxh.dev.1nww.com";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:67:"
Apache Server at app.3dxh.dev.1nww.com Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:9:"HTTP_HOST";s:21:"app.3dxh.dev.1nww.com";s:20:"HTTP_ACCEPT_ENCODING";s:23:"gzip, deflate, br, zstd";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36";s:20:"HTTP_ACCEPT_LANGUAGE";s:2:"en";s:11:"HTTP_ACCEPT";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";s:17:"proxy-nokeepalive";s:1:"1";s:11:"SSL_TLS_SNI";s:21:"app.3dxh.dev.1nww.com";s:5:"HTTPS";s:2:"on";s:15:"REDIRECT_STATUS";s:3:"200";s:20:"REDIRECT_SSL_TLS_SNI";s:21:"app.3dxh.dev.1nww.com";s:14:"REDIRECT_HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698337845.641225;s:12:"REQUEST_TIME";i:1698337845;}s:3:"GET";a:1:{s:10:"return_url";s:35:"https://app.3dxh.dev.1nww.com/admin";}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:948:"a:2:{s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:35:"app\modules\admin\assets\LoginAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:43:"/statics/layuiadmin/style/login.css?v=1.0.0";}s:2:"js";a:0:{}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a9435a1eb7";s:3:"url";s:105:"https://app.3dxh.dev.1nww.com/admin/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fadmin";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"182.254.171.71";s:4:"time";d:1698337845.641225;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7844568;s:14:"processingTime";d:0.12731599807739258;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653a9953edd1b.data b/runtime/debug/653a9953edd1b.data deleted file mode 100644 index d469519..0000000 --- a/runtime/debug/653a9953edd1b.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:21575:"a:1:{s:8:"messages";a:40:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698339155.965614;i:4;a:0:{}i:5;i:2458888;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698339155.965627;i:4;a:0:{}i:5;i:2460064;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698339155.973737;i:4;a:0:{}i:5;i:3705656;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698339155.975314;i:4;a:0:{}i:5;i:3904384;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339155.975449;i:4;a:0:{}i:5;i:3906624;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339155.976193;i:4;a:0:{}i:5;i:4121136;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339155.976937;i:4;a:0:{}i:5;i:4194856;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698339155.977061;i:4;a:0:{}i:5;i:4195688;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698339155.977305;i:4;a:0:{}i:5;i:4219864;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339155.97733;i:4;a:0:{}i:5;i:4226256;}i:18;a:6:{i:0;s:39:"Route requested: 'store/passport/login'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698339155.978544;i:4;a:0:{}i:5;i:4440080;}i:19;a:6:{i:0;s:21:"Loading module: store";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698339155.978565;i:4;a:0:{}i:5;i:4441704;}i:20;a:6:{i:0;s:34:"Route to run: store/passport/login";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698339155.980347;i:4;a:0:{}i:5;i:4649344;}i:21;a:6:{i:0;s:79:"Running action: app\modules\store\controllers\PassportController::actionLogin()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698339155.980454;i:4;a:0:{}i:5;i:4657424;}i:22;a:6:{i:0;s:94:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698339155.983455;i:4;a:1:{i:0;a:5:{s:4:"file";s:83:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/controllers/PassportController.php";s:4:"line";i:45;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:5021096;}i:23;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339155.985833;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5418648;}i:24;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339155.986147;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5426472;}i:25;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339155.991157;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6247760;}i:26;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698339155.99119;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6250944;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.068193;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6303480;}i:34;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.073717;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6585008;}i:37;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.076592;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6589016;}i:38;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.076728;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6589320;}i:39;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.076938;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6596288;}i:42;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.079755;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6599760;}i:43;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.079939;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6601216;}i:44;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.080153;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6607992;}i:47;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.082993;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6611512;}i:48;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.083118;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6611984;}i:49;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.083326;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6619592;}i:52;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.086116;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6623064;}i:53;a:6:{i:0;s:96:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698339156.086914;i:4;a:1:{i:0;a:5:{s:4:"file";s:83:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/controllers/PassportController.php";s:4:"line";i:45;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6708360;}i:54;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.090231;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7217800;}i:55;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.090502;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7224768;}i:58;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.093333;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7228240;}i:59;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.093438;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7228760;}i:60;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.09363;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7235536;}i:63;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698339156.096402;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7239224;}i:64;a:6:{i:0;s:101:"Access to debugger is denied due to IP address restriction. The requesting IP address is 49.234.3.160";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698339156.098338;i:4;a:2:{i:0;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:36;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:83:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/controllers/PassportController.php";s:4:"line";i:45;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7467712;}i:65;a:6:{i:0;s:101:"Access to debugger is denied due to IP address restriction. The requesting IP address is 49.234.3.160";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698339156.09875;i:4;a:0:{}i:5;i:7443544;}}}";s:9:"profiling";s:15849:"a:3:{s:6:"memory";i:7494704;s:4:"time";d:0.14302301406860352;s:8:"messages";a:18:{i:27;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698339155.991198;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6252824;}i:28;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698339156.064408;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6266240;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.064457;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6267232;}i:30;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.067567;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6277272;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.068228;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6307176;}i:33;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.071232;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6311592;}i:35;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.073742;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6586760;}i:36;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.076443;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6589856;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.076955;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6598040;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.07965;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6601088;}i:45;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.08017;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6609744;}i:46;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.082895;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6612800;}i:50;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.083344;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6621344;}i:51;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.086018;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6624392;}i:56;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.090521;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7226520;}i:57;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.093242;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7229568;}i:61;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.093646;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7237288;}i:62;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.09632;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7240384;}}}";s:2:"db";s:14215:"a:1:{s:8:"messages";a:16:{i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.064457;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6267232;}i:30;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.067567;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6277272;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.068228;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6307176;}i:33;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.071232;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6311592;}i:35;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.073742;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6586760;}i:36;a:6:{i:0;s:92:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_MINI_LOGO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.076443;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:144;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:15:"getSiteMiniLogo";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6589856;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.076955;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6598040;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.07965;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:23;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6601088;}i:45;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.08017;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6609744;}i:46;a:6:{i:0;s:89:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_DOMAIN')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.082895;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:36;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:71;s:8:"function";s:13:"getSiteDomain";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6612800;}i:50;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.083344;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6621344;}i:51;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.086018;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:73:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/passport/login.php";s:4:"line";i:72;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6624392;}i:56;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.090521;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7226520;}i:57;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.093242;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:28;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7229568;}i:61;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.093646;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7237288;}i:62;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698339156.09632;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:75:"/www/wwwroot/app.3dxh.dev.1nww.com/modules/store/views/layouts/passport.php";s:4:"line";i:29;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7240384;}}}";s:5:"event";s:7223:"a:42:{i:0;a:5:{s:4:"time";d:1698339155.976182;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698339155.978289;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698339155.980422;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698339155.98043;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:4;a:5:{s:4:"time";d:1698339155.980438;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:5;a:5:{s:4:"time";d:1698339155.98345;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698339155.988686;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:7;a:5:{s:4:"time";d:1698339156.064396;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:8;a:5:{s:4:"time";d:1698339156.076483;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698339156.076527;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:10;a:5:{s:4:"time";d:1698339156.076818;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:11;a:5:{s:4:"time";d:1698339156.079681;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:12;a:5:{s:4:"time";d:1698339156.079713;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:13;a:5:{s:4:"time";d:1698339156.080025;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698339156.082928;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698339156.082958;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:16;a:5:{s:4:"time";d:1698339156.083215;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698339156.086048;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698339156.086077;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:19;a:5:{s:4:"time";d:1698339156.086665;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:20;a:5:{s:4:"time";d:1698339156.086781;s:4:"name";s:9:"beforeRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:21;a:5:{s:4:"time";d:1698339156.086792;s:4:"name";s:8:"afterRun";s:5:"class";s:20:"yii\base\WidgetEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\widgets\Block";}i:22;a:5:{s:4:"time";d:1698339156.086853;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698339156.086911;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:24;a:5:{s:4:"time";d:1698339156.087896;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698339156.090374;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:26;a:5:{s:4:"time";d:1698339156.09327;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:27;a:5:{s:4:"time";d:1698339156.0933;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:28;a:5:{s:4:"time";d:1698339156.093509;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:29;a:5:{s:4:"time";d:1698339156.096345;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:30;a:5:{s:4:"time";d:1698339156.096373;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:31;a:5:{s:4:"time";d:1698339156.096499;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:32;a:5:{s:4:"time";d:1698339156.098359;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698339156.098462;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698339156.098514;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698339156.098528;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:48:"app\modules\store\controllers\PassportController";}i:36;a:5:{s:4:"time";d:1698339156.098536;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:24:"app\modules\store\Module";}i:37;a:5:{s:4:"time";d:1698339156.09854;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:38;a:5:{s:4:"time";d:1698339156.09856;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:39;a:5:{s:4:"time";d:1698339156.098569;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:40;a:5:{s:4:"time";d:1698339156.09876;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:41;a:5:{s:4:"time";d:1698339156.098828;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:89:"a:3:{s:5:"start";d:1698339155.95676;s:3:"end";d:1698339156.09993;s:6:"memory";i:7494704;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1695:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978505;i:4;a:0:{}i:5;i:4434136;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978514;i:4;a:0:{}i:5;i:4434928;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978519;i:4;a:0:{}i:5;i:4435760;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978524;i:4;a:0:{}i:5;i:4436544;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978527;i:4;a:0:{}i:5;i:4437376;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978531;i:4;a:0:{}i:5;i:4438192;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978535;i:4;a:0:{}i:5;i:4439000;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698339155.978537;i:4;a:0:{}i:5;i:4440016;}}s:5:"route";s:20:"store/passport/login";s:6:"action";s:63:"app\modules\store\controllers\PassportController::actionLogin()";}";s:7:"request";s:3246:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:5:{s:4:"host";s:21:"app.3dxh.dev.1nww.com";s:15:"accept-encoding";s:23:"gzip, deflate, br, zstd";s:10:"user-agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36";s:15:"accept-language";s:2:"en";s:6:"accept";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=575fa76b42ffd6cfd7e3c561b6463e73c7dc6c00da4ced8512ad06ce1a987150a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%224SUsc84e0zhR-xUDXgqz1R2OyERN3BVt%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:20:"store/passport/login";s:6:"action";s:63:"app\modules\store\controllers\PassportController::actionLogin()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:40:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:76:"/store/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fstore";s:12:"QUERY_STRING";s:54:"return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fstore";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:54:"return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fstore";s:12:"REDIRECT_URL";s:21:"/store/passport/login";s:11:"REMOTE_PORT";s:5:"58472";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:12:"49.234.3.160";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:21:"app.3dxh.dev.1nww.com";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:67:"
Apache Server at app.3dxh.dev.1nww.com Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:9:"HTTP_HOST";s:21:"app.3dxh.dev.1nww.com";s:20:"HTTP_ACCEPT_ENCODING";s:23:"gzip, deflate, br, zstd";s:15:"HTTP_USER_AGENT";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36";s:20:"HTTP_ACCEPT_LANGUAGE";s:2:"en";s:11:"HTTP_ACCEPT";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";s:17:"proxy-nokeepalive";s:1:"1";s:11:"SSL_TLS_SNI";s:21:"app.3dxh.dev.1nww.com";s:5:"HTTPS";s:2:"on";s:15:"REDIRECT_STATUS";s:3:"200";s:20:"REDIRECT_SSL_TLS_SNI";s:21:"app.3dxh.dev.1nww.com";s:14:"REDIRECT_HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698339155.952355;s:12:"REQUEST_TIME";i:1698339155;}s:3:"GET";a:1:{s:10:"return_url";s:35:"https://app.3dxh.dev.1nww.com/store";}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:948:"a:2:{s:33:"app\modules\admin\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:3:{i:0;s:47:"/statics/layuiadmin/layui/css/layui.css?v=1.0.1";i:1;s:43:"/statics/layuiadmin/style/admin.css?v=1.0.0";i:2;s:35:"/statics/admin/css/site.css?v=1.0.1";}s:2:"js";a:4:{i:0;s:42:"/statics/layuiadmin/layui/layui.js?v=1.0.1";i:1;s:33:"/statics/js/jquery.min.js?v=1.0.0";i:2;s:26:"/statics/js/vue.js?v=1.0.0";i:3;s:27:"/statics/js/site.js?v=1.0.0";}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:35:"app\modules\admin\assets\LoginAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:43:"/statics/layuiadmin/style/login.css?v=1.0.0";}s:2:"js";a:0:{}s:7:"depends";a:0:{}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653a9953edd1b";s:3:"url";s:105:"https://app.3dxh.dev.1nww.com/store/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fstore";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:12:"49.234.3.160";s:4:"time";d:1698339155.952355;s:10:"statusCode";i:200;s:8:"sqlCount";i:8;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7494704;s:14:"processingTime";d:0.14302301406860352;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653aa7b054bcd.data b/runtime/debug/653aa7b054bcd.data deleted file mode 100644 index 3e6eb90..0000000 --- a/runtime/debug/653aa7b054bcd.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14087:"a:1:{s:8:"messages";a:30:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698342832.33924;i:4;a:0:{}i:5;i:2454640;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698342832.339254;i:4;a:0:{}i:5;i:2455816;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698342832.346743;i:4;a:0:{}i:5;i:3701408;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698342832.348109;i:4;a:0:{}i:5;i:3900136;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.348245;i:4;a:0:{}i:5;i:3902376;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.348955;i:4;a:0:{}i:5;i:4116888;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.349644;i:4;a:0:{}i:5;i:4190608;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698342832.349734;i:4;a:0:{}i:5;i:4191440;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698342832.34998;i:4;a:0:{}i:5;i:4215616;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.350007;i:4;a:0:{}i:5;i:4222008;}i:18;a:6:{i:0;s:19:"Route requested: ''";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698342832.351184;i:4;a:0:{}i:5;i:4434992;}i:19;a:6:{i:0;s:24:"Route to run: site/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698342832.352256;i:4;a:0:{}i:5;i:4561168;}i:20;a:6:{i:0;s:61:"Running action: app\controllers\SiteController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698342832.352354;i:4;a:0:{}i:5;i:4568856;}i:21;a:6:{i:0;s:76:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698342832.353303;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:4695664;}i:22;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.356317;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5258384;}i:23;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.356575;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5266216;}i:24;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.361361;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6095728;}i:25;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698342832.3614;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6098912;}i:30;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.439013;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6151448;}i:33;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.444431;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6432976;}i:36;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.447163;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6436848;}i:37;a:6:{i:0;s:78:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698342832.447377;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6416312;}i:38;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.450917;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7000600;}i:39;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.451222;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7007568;}i:42;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.453947;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7011040;}i:43;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.454068;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7011560;}i:44;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.454308;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7018336;}i:47;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342832.456887;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7022664;}i:48;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 185.180.143.48";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698342832.458729;i:4;a:2:{i:0;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:30;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7251168;}i:49;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 185.180.143.48";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698342832.459104;i:4;a:0:{}i:5;i:7217816;}}}";s:9:"profiling";s:10725:"a:3:{s:6:"memory";i:7278160;s:4:"time";d:0.1292881965637207;s:8:"messages";a:12:{i:26;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698342832.361408;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6100792;}i:27;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698342832.435256;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6114208;}i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.435308;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6115200;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.438352;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6125240;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.439049;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155144;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.441848;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6158280;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.444458;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434728;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.447017;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6437776;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.451244;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009320;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.453842;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7012368;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.454326;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7020088;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.456806;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7023184;}}}";s:2:"db";s:9140:"a:1:{s:8:"messages";a:10:{i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.435308;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6115200;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.438352;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6125240;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.439049;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155144;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.441848;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6158280;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.444458;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434728;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.447017;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6437776;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.451244;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009320;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.453842;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7012368;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.454326;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7020088;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698342832.456806;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7023184;}}}";s:5:"event";s:4801:"a:28:{i:0;a:5:{s:4:"time";d:1698342832.348944;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698342832.350934;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698342832.352329;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698342832.352338;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:4;a:5:{s:4:"time";d:1698342832.353299;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698342832.359066;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:6;a:5:{s:4:"time";d:1698342832.435243;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698342832.447065;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:8;a:5:{s:4:"time";d:1698342832.44711;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698342832.447319;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698342832.447375;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:11;a:5:{s:4:"time";d:1698342832.44861;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:12;a:5:{s:4:"time";d:1698342832.451079;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698342832.453875;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:14;a:5:{s:4:"time";d:1698342832.453908;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698342832.454184;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698342832.456831;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:17;a:5:{s:4:"time";d:1698342832.456858;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698342832.456997;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698342832.458749;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:20;a:5:{s:4:"time";d:1698342832.458862;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:21;a:5:{s:4:"time";d:1698342832.458894;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698342832.458907;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:23;a:5:{s:4:"time";d:1698342832.458914;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698342832.458921;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:25;a:5:{s:4:"time";d:1698342832.458927;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698342832.459113;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:27;a:5:{s:4:"time";d:1698342832.459157;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698342832.330731;s:3:"end";d:1698342832.460106;s:6:"memory";i:7278160;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1667:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351147;i:4;a:0:{}i:5;i:4429384;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351157;i:4;a:0:{}i:5;i:4430176;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351161;i:4;a:0:{}i:5;i:4431008;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351165;i:4;a:0:{}i:5;i:4431792;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351169;i:4;a:0:{}i:5;i:4432624;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351172;i:4;a:0:{}i:5;i:4433440;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351176;i:4;a:0:{}i:5;i:4434248;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342832.351178;i:4;a:0:{}i:5;i:4435264;}}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";}";s:7:"request";s:2464:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:4:{s:15:"accept-encoding";s:4:"gzip";s:6:"accept";s:3:"*/*";s:10:"user-agent";s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36";s:4:"host";s:13:"124.71.161.49";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=183af7bbc5201084ba3954dd4d5248d0482538dc285f64723f0e767f7d6e4b89a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Fx_Hr6L9oYt2ZrZeGGyQxcOmNZPXSuxm%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:33:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:1:"/";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:11:"REMOTE_PORT";s:5:"45094";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"185.180.143.48";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:20:"HTTP_ACCEPT_ENCODING";s:4:"gzip";s:11:"HTTP_ACCEPT";s:3:"*/*";s:15:"HTTP_USER_AGENT";s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36";s:9:"HTTP_HOST";s:13:"124.71.161.49";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698342832.326477;s:12:"REQUEST_TIME";i:1698342832;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:1552:"a:4:{s:19:"app\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:12:"css/site.css";}s:2:"js";a:0:{}s:7:"depends";a:2:{i:0;s:16:"yii\web\YiiAsset";i:1;s:28:"yii\bootstrap\BootstrapAsset";}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:16:"yii\web\YiiAsset";a:9:{s:10:"sourcePath";s:61:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/assets";s:2:"js";a:1:{i:0;s:6:"yii.js";}s:7:"depends";a:1:{i:0;s:19:"yii\web\JqueryAsset";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/681caeaf";s:7:"baseUrl";s:16:"/assets/681caeaf";s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:19:"yii\web\JqueryAsset";a:9:{s:10:"sourcePath";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/jquery/dist";s:2:"js";a:1:{i:0;s:9:"jquery.js";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/d64e97c0";s:7:"baseUrl";s:16:"/assets/d64e97c0";s:7:"depends";a:0:{}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:28:"yii\bootstrap\BootstrapAsset";a:9:{s:10:"sourcePath";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/bootstrap/dist";s:3:"css";a:1:{i:0;s:17:"css/bootstrap.css";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/f80bdf98";s:7:"baseUrl";s:16:"/assets/f80bdf98";s:7:"depends";a:0:{}s:2:"js";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653aa7b054bcd";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"185.180.143.48";s:4:"time";d:1698342832.326477;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278160;s:14:"processingTime";d:0.1292881965637207;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653aa7bbcf070.data b/runtime/debug/653aa7bbcf070.data deleted file mode 100644 index 4260e8f..0000000 --- a/runtime/debug/653aa7bbcf070.data +++ /dev/null @@ -1,13 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:3227:"a:1:{s:8:"messages";a:14:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698342843.839951;i:4;a:0:{}i:5;i:2455104;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698342843.839966;i:4;a:0:{}i:5;i:2456280;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698342843.84761;i:4;a:0:{}i:5;i:3701872;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698342843.849099;i:4;a:0:{}i:5;i:3900600;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342843.849237;i:4;a:0:{}i:5;i:3902840;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342843.849987;i:4;a:0:{}i:5;i:4117352;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342843.85069;i:4;a:0:{}i:5;i:4191072;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698342843.850838;i:4;a:0:{}i:5;i:4191904;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698342843.851058;i:4;a:0:{}i:5;i:4216080;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698342843.851083;i:4;a:0:{}i:5;i:4222472;}i:18;a:6:{i:0;s:31:"Route requested: 'showLogin.cc'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698342843.852283;i:4;a:0:{}i:5;i:4435504;}i:19;a:6:{i:0;s:933:"yii\base\InvalidRouteException: Unable to resolve the request "showLogin.cc". in /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Module.php:561 -Stack trace: -#0 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/web/Application.php(103): yii\base\Module->runAction('showLogin.cc', Array) -#1 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#2 /www/wwwroot/app.3dxh.dev.1nww.com/web/index.php(11): yii\base\Application->run() -#3 {main} - -Next yii\web\NotFoundHttpException: 页面未找到。 in /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/web/Application.php:115 -Stack trace: -#0 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#1 /www/wwwroot/app.3dxh.dev.1nww.com/web/index.php(11): yii\base\Application->run() -#2 {main}";i:1;i:1;i:2;s:25:"yii\web\HttpException:404";i:3;d:1698342843.853174;i:4;a:0:{}i:5;i:4262672;}i:20;a:6:{i:0;s:104:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/views/errorHandler/error.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698342843.854616;i:4;a:0:{}i:5;i:4378888;}i:21;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 185.180.143.48";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698342843.855944;i:4;a:0:{}i:5;i:4546184;}}}";s:9:"profiling";s:84:"a:3:{s:6:"memory";i:4841752;s:4:"time";d:0.027029991149902344;s:8:"messages";a:0:{}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:1696:"a:10:{i:0;a:5:{s:4:"time";d:1698342843.849976;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698342843.852031;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698342843.854611;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:3;a:5:{s:4:"time";d:1698342843.854728;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:4;a:5:{s:4:"time";d:1698342843.854752;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698342843.854758;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698342843.854814;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:7;a:5:{s:4:"time";d:1698342843.854822;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:8;a:5:{s:4:"time";d:1698342843.855958;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:9;a:5:{s:4:"time";d:1698342843.855987;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698342843.831193;s:3:"end";d:1698342843.858242;s:6:"memory";i:4841752;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1616:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.852246;i:4;a:0:{}i:5;i:4429888;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.852255;i:4;a:0:{}i:5;i:4430680;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.85226;i:4;a:0:{}i:5;i:4431512;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.852264;i:4;a:0:{}i:5;i:4432296;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.852267;i:4;a:0:{}i:5;i:4433128;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.85227;i:4;a:0:{}i:5;i:4433944;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.852274;i:4;a:0:{}i:5;i:4434752;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698342843.852276;i:4;a:0:{}i:5;i:4435768;}}s:5:"route";s:12:"showLogin.cc";s:6:"action";N;}";s:7:"request";s:2298:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:404;s:14:"requestHeaders";a:4:{s:15:"accept-encoding";s:4:"gzip";s:6:"accept";s:3:"*/*";s:10:"user-agent";s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36";s:4:"host";s:13:"124.71.161.49";}s:15:"responseHeaders";a:1:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";}s:5:"route";s:12:"showLogin.cc";s:6:"action";N;s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:36:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:13:"/showLogin.cc";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:13:"/showLogin.cc";s:11:"REMOTE_PORT";s:5:"43484";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"185.180.143.48";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:20:"HTTP_ACCEPT_ENCODING";s:4:"gzip";s:11:"HTTP_ACCEPT";s:3:"*/*";s:15:"HTTP_USER_AGENT";s:115:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36";s:9:"HTTP_HOST";s:13:"124.71.161.49";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:15:"REDIRECT_STATUS";s:3:"200";s:14:"REDIRECT_HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698342843.826929;s:12:"REQUEST_TIME";i:1698342843;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653aa7bbcf070";s:3:"url";s:34:"https://124.71.161.49/showLogin.cc";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"185.180.143.48";s:4:"time";d:1698342843.826929;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4841752;s:14:"processingTime";d:0.027029991149902344;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653aab3cb779c.data b/runtime/debug/653aab3cb779c.data deleted file mode 100644 index 8f2348c..0000000 --- a/runtime/debug/653aab3cb779c.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14089:"a:1:{s:8:"messages";a:30:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343740.743649;i:4;a:0:{}i:5;i:2452680;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698343740.743664;i:4;a:0:{}i:5;i:2453856;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343740.751183;i:4;a:0:{}i:5;i:3699448;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698343740.752542;i:4;a:0:{}i:5;i:3898176;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.752679;i:4;a:0:{}i:5;i:3900416;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.753374;i:4;a:0:{}i:5;i:4114928;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.754167;i:4;a:0:{}i:5;i:4188648;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698343740.754258;i:4;a:0:{}i:5;i:4189480;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343740.754476;i:4;a:0:{}i:5;i:4213656;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.754514;i:4;a:0:{}i:5;i:4220048;}i:18;a:6:{i:0;s:19:"Route requested: ''";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698343740.7557;i:4;a:0:{}i:5;i:4431680;}i:19;a:6:{i:0;s:24:"Route to run: site/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698343740.756758;i:4;a:0:{}i:5;i:4557856;}i:20;a:6:{i:0;s:61:"Running action: app\controllers\SiteController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698343740.756873;i:4;a:0:{}i:5;i:4565544;}i:21;a:6:{i:0;s:76:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698343740.757774;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:4692352;}i:22;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.760784;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5255072;}i:23;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.761087;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5262904;}i:24;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.765574;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6092416;}i:25;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698343740.765613;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6095600;}i:30;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.839973;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6148136;}i:33;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.845155;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6429664;}i:36;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.847723;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6433536;}i:37;a:6:{i:0;s:78:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698343740.847953;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6413000;}i:38;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.851771;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6997288;}i:39;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.852089;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7004256;}i:42;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.854618;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7007728;}i:43;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.854728;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7008248;}i:44;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.854938;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7015024;}i:47;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343740.857409;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7019352;}i:48;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 167.248.133.35";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698343740.859455;i:4;a:2:{i:0;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:30;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7247856;}i:49;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 167.248.133.35";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698343740.859914;i:4;a:0:{}i:5;i:7214504;}}}";s:9:"profiling";s:10724:"a:3:{s:6:"memory";i:7274848;s:4:"time";d:0.125838041305542;s:8:"messages";a:12:{i:26;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698343740.765621;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6097480;}i:27;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698343740.836459;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6110896;}i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.836504;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6111888;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.839374;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6121928;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.840005;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6151832;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.842626;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6154968;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.845178;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6431416;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.847575;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434464;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.852108;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7006008;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.854509;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009056;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.854955;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7016776;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.857315;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7019872;}}}";s:2:"db";s:9140:"a:1:{s:8:"messages";a:10:{i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.836504;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6111888;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.839374;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6121928;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.840005;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6151832;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.842626;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6154968;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.845178;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6431416;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.847575;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434464;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.852108;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7006008;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.854509;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009056;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.854955;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7016776;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343740.857315;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7019872;}}}";s:5:"event";s:4800:"a:28:{i:0;a:5:{s:4:"time";d:1698343740.753362;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698343740.755427;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698343740.756846;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698343740.756856;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:4;a:5:{s:4:"time";d:1698343740.75777;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698343740.763414;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:6;a:5:{s:4:"time";d:1698343740.836449;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698343740.847627;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:8;a:5:{s:4:"time";d:1698343740.84767;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698343740.847907;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698343740.847951;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:11;a:5:{s:4:"time";d:1698343740.849141;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:12;a:5:{s:4:"time";d:1698343740.851953;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698343740.854548;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:14;a:5:{s:4:"time";d:1698343740.854583;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698343740.854818;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698343740.857341;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:17;a:5:{s:4:"time";d:1698343740.857375;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698343740.857517;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698343740.859478;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:20;a:5:{s:4:"time";d:1698343740.859598;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:21;a:5:{s:4:"time";d:1698343740.859636;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698343740.859652;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:23;a:5:{s:4:"time";d:1698343740.859661;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698343740.859671;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:25;a:5:{s:4:"time";d:1698343740.859679;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698343740.859924;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:27;a:5:{s:4:"time";d:1698343740.85997;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698343740.735004;s:3:"end";d:1698343740.860929;s:6:"memory";i:7274848;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1667:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755665;i:4;a:0:{}i:5;i:4426072;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755675;i:4;a:0:{}i:5;i:4426864;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755679;i:4;a:0:{}i:5;i:4427696;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755682;i:4;a:0:{}i:5;i:4428480;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755685;i:4;a:0:{}i:5;i:4429312;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755688;i:4;a:0:{}i:5;i:4430128;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755692;i:4;a:0:{}i:5;i:4430936;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343740.755694;i:4;a:0:{}i:5;i:4431952;}}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";}";s:7:"request";s:2058:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:1:{s:4:"host";s:17:"124.71.161.49:443";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=c866a700308b3217a3d5ee9286ba20912754fa631e0cf5ccb1ce783a2fd61a0fa%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22mMP1JqyQ7kBHdIMS2M8Z_ta6cz5pjv5M%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:30:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:1:"/";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:11:"REMOTE_PORT";s:5:"45392";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"167.248.133.35";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:9:"HTTP_HOST";s:17:"124.71.161.49:443";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698343740.730762;s:12:"REQUEST_TIME";i:1698343740;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:1552:"a:4:{s:19:"app\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:12:"css/site.css";}s:2:"js";a:0:{}s:7:"depends";a:2:{i:0;s:16:"yii\web\YiiAsset";i:1;s:28:"yii\bootstrap\BootstrapAsset";}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:16:"yii\web\YiiAsset";a:9:{s:10:"sourcePath";s:61:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/assets";s:2:"js";a:1:{i:0;s:6:"yii.js";}s:7:"depends";a:1:{i:0;s:19:"yii\web\JqueryAsset";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/681caeaf";s:7:"baseUrl";s:16:"/assets/681caeaf";s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:19:"yii\web\JqueryAsset";a:9:{s:10:"sourcePath";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/jquery/dist";s:2:"js";a:1:{i:0;s:9:"jquery.js";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/d64e97c0";s:7:"baseUrl";s:16:"/assets/d64e97c0";s:7:"depends";a:0:{}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:28:"yii\bootstrap\BootstrapAsset";a:9:{s:10:"sourcePath";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/bootstrap/dist";s:3:"css";a:1:{i:0;s:17:"css/bootstrap.css";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/f80bdf98";s:7:"baseUrl";s:16:"/assets/f80bdf98";s:7:"depends";a:0:{}s:2:"js";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653aab3cb779c";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"167.248.133.35";s:4:"time";d:1698343740.730762;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7274848;s:14:"processingTime";d:0.125838041305542;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653aab3db8735.data b/runtime/debug/653aab3db8735.data deleted file mode 100644 index 03750f9..0000000 --- a/runtime/debug/653aab3db8735.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14088:"a:1:{s:8:"messages";a:30:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343741.747374;i:4;a:0:{}i:5;i:2454512;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698343741.747389;i:4;a:0:{}i:5;i:2455688;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343741.75517;i:4;a:0:{}i:5;i:3701280;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698343741.756564;i:4;a:0:{}i:5;i:3900008;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.756691;i:4;a:0:{}i:5;i:3902248;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.757695;i:4;a:0:{}i:5;i:4116760;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.758554;i:4;a:0:{}i:5;i:4190480;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698343741.764916;i:4;a:0:{}i:5;i:4191312;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343741.765221;i:4;a:0:{}i:5;i:4215488;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.765254;i:4;a:0:{}i:5;i:4221880;}i:18;a:6:{i:0;s:19:"Route requested: ''";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698343741.767361;i:4;a:0:{}i:5;i:4434864;}i:19;a:6:{i:0;s:24:"Route to run: site/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698343741.768538;i:4;a:0:{}i:5;i:4561040;}i:20;a:6:{i:0;s:61:"Running action: app\controllers\SiteController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698343741.768647;i:4;a:0:{}i:5;i:4568728;}i:21;a:6:{i:0;s:76:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698343741.769576;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:4695536;}i:22;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.772591;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5258256;}i:23;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.783109;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5266088;}i:24;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.789599;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6095600;}i:25;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698343741.789643;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6098784;}i:30;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.872475;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6151320;}i:33;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.878983;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6432848;}i:36;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.88346;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6436720;}i:37;a:6:{i:0;s:78:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698343741.885451;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6416184;}i:38;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.889235;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7000472;}i:39;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.890341;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7007440;}i:42;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.893551;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7010912;}i:43;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.893831;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7011432;}i:44;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.894742;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7018208;}i:47;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343741.89764;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7022536;}i:48;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 167.248.133.35";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698343741.901072;i:4;a:2:{i:0;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:30;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7251040;}i:49;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 167.248.133.35";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698343741.901467;i:4;a:0:{}i:5;i:7217688;}}}";s:9:"profiling";s:10725:"a:3:{s:6:"memory";i:7278032;s:4:"time";d:0.16422605514526367;s:8:"messages";a:12:{i:26;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698343741.78965;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6100664;}i:27;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698343741.867918;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6114080;}i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.867961;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6115072;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.871913;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6125112;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.872523;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155016;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.876466;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6158152;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.879013;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434600;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.883291;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6437648;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.890368;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009192;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.893399;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7012240;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.894769;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7019960;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.897497;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7023056;}}}";s:2:"db";s:9140:"a:1:{s:8:"messages";a:10:{i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.867961;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6115072;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.871913;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6125112;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.872523;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155016;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.876466;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6158152;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.879013;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434600;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.883291;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6437648;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.890368;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009192;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.893399;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7012240;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.894769;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7019960;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698343741.897497;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7023056;}}}";s:5:"event";s:4800:"a:28:{i:0;a:5:{s:4:"time";d:1698343741.757683;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698343741.767064;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698343741.76862;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698343741.76863;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:4;a:5:{s:4:"time";d:1698343741.769571;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698343741.787305;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:6;a:5:{s:4:"time";d:1698343741.867869;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698343741.883356;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:8;a:5:{s:4:"time";d:1698343741.883404;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698343741.885396;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698343741.885447;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:11;a:5:{s:4:"time";d:1698343741.886741;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:12;a:5:{s:4:"time";d:1698343741.890182;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698343741.893448;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:14;a:5:{s:4:"time";d:1698343741.893492;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698343741.894583;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698343741.897553;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:17;a:5:{s:4:"time";d:1698343741.897593;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698343741.899103;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698343741.901097;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:20;a:5:{s:4:"time";d:1698343741.901211;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:21;a:5:{s:4:"time";d:1698343741.901245;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698343741.901259;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:23;a:5:{s:4:"time";d:1698343741.901266;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698343741.901273;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:25;a:5:{s:4:"time";d:1698343741.90128;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698343741.901477;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:27;a:5:{s:4:"time";d:1698343741.901538;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698343741.738183;s:3:"end";d:1698343741.902491;s:6:"memory";i:7278032;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1666:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.76732;i:4;a:0:{}i:5;i:4429256;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767333;i:4;a:0:{}i:5;i:4430048;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767337;i:4;a:0:{}i:5;i:4430880;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767341;i:4;a:0:{}i:5;i:4431664;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767345;i:4;a:0:{}i:5;i:4432496;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767348;i:4;a:0:{}i:5;i:4433312;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767352;i:4;a:0:{}i:5;i:4434120;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343741.767354;i:4;a:0:{}i:5;i:4435136;}}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";}";s:7:"request";s:2372:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:4:{s:15:"accept-encoding";s:4:"gzip";s:6:"accept";s:3:"*/*";s:10:"user-agent";s:70:"Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)";s:4:"host";s:13:"124.71.161.49";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=8dbacdb0eed2dac6b7f21af811c27261184000309d8e9e72c03cd75d21e5cf86a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22Nlvt-X3MI7ybJkN247dnoZG-m-JdMBFW%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:33:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:1:"/";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:11:"REMOTE_PORT";s:5:"56020";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"167.248.133.35";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:20:"HTTP_ACCEPT_ENCODING";s:4:"gzip";s:11:"HTTP_ACCEPT";s:3:"*/*";s:15:"HTTP_USER_AGENT";s:70:"Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)";s:9:"HTTP_HOST";s:13:"124.71.161.49";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698343741.733956;s:12:"REQUEST_TIME";i:1698343741;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:1552:"a:4:{s:19:"app\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:12:"css/site.css";}s:2:"js";a:0:{}s:7:"depends";a:2:{i:0;s:16:"yii\web\YiiAsset";i:1;s:28:"yii\bootstrap\BootstrapAsset";}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:16:"yii\web\YiiAsset";a:9:{s:10:"sourcePath";s:61:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/assets";s:2:"js";a:1:{i:0;s:6:"yii.js";}s:7:"depends";a:1:{i:0;s:19:"yii\web\JqueryAsset";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/681caeaf";s:7:"baseUrl";s:16:"/assets/681caeaf";s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:19:"yii\web\JqueryAsset";a:9:{s:10:"sourcePath";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/jquery/dist";s:2:"js";a:1:{i:0;s:9:"jquery.js";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/d64e97c0";s:7:"baseUrl";s:16:"/assets/d64e97c0";s:7:"depends";a:0:{}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:28:"yii\bootstrap\BootstrapAsset";a:9:{s:10:"sourcePath";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/bootstrap/dist";s:3:"css";a:1:{i:0;s:17:"css/bootstrap.css";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/f80bdf98";s:7:"baseUrl";s:16:"/assets/f80bdf98";s:7:"depends";a:0:{}s:2:"js";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653aab3db8735";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"167.248.133.35";s:4:"time";d:1698343741.733956;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278032;s:14:"processingTime";d:0.16422605514526367;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653aab3f81fae.data b/runtime/debug/653aab3f81fae.data deleted file mode 100644 index 3cb99d5..0000000 --- a/runtime/debug/653aab3f81fae.data +++ /dev/null @@ -1,13 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:3318:"a:1:{s:8:"messages";a:14:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343743.522195;i:4;a:0:{}i:5;i:2456736;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698343743.522216;i:4;a:0:{}i:5;i:2457912;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343743.531993;i:4;a:0:{}i:5;i:3703504;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698343743.533658;i:4;a:0:{}i:5;i:3902232;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343743.533786;i:4;a:0:{}i:5;i:3904472;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343743.534513;i:4;a:0:{}i:5;i:4118984;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343743.535301;i:4;a:0:{}i:5;i:4192704;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698343743.535432;i:4;a:0:{}i:5;i:4193536;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698343743.535695;i:4;a:0:{}i:5;i:4217712;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698343743.53572;i:4;a:0:{}i:5;i:4224104;}i:18;a:6:{i:0;s:73:"Route requested: 'upload/0/1/upload/image/2022/1119/1668852376239631.png'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698343743.537044;i:4;a:0:{}i:5;i:4437248;}i:19;a:6:{i:0;s:981:"yii\base\InvalidRouteException: Unable to resolve the request "upload/0/1/upload/image/2022/1119/1668852376239631.png". in /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Module.php:561 -Stack trace: -#0 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/web/Application.php(103): yii\base\Module->runAction('upload/0/1/uplo...', Array) -#1 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#2 /www/wwwroot/app.3dxh.dev.1nww.com/web/index.php(11): yii\base\Application->run() -#3 {main} - -Next yii\web\NotFoundHttpException: 页面未找到。 in /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/web/Application.php:115 -Stack trace: -#0 /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) -#1 /www/wwwroot/app.3dxh.dev.1nww.com/web/index.php(11): yii\base\Application->run() -#2 {main}";i:1;i:1;i:2;s:25:"yii\web\HttpException:404";i:3;d:1698343743.538017;i:4;a:0:{}i:5;i:4264448;}i:20;a:6:{i:0;s:104:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/views/errorHandler/error.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698343743.538924;i:4;a:0:{}i:5;i:4380664;}i:21;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 167.248.133.35";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698343743.540311;i:4;a:0:{}i:5;i:4547960;}}}";s:9:"profiling";s:83:"a:3:{s:6:"memory";i:4827104;s:4:"time";d:0.03262519836425781;s:8:"messages";a:0:{}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:1696:"a:10:{i:0;a:5:{s:4:"time";d:1698343743.534501;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698343743.536702;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698343743.538919;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:3;a:5:{s:4:"time";d:1698343743.539033;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:4;a:5:{s:4:"time";d:1698343743.539059;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698343743.539065;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698343743.539092;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:7;a:5:{s:4:"time";d:1698343743.539099;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:8;a:5:{s:4:"time";d:1698343743.540326;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:9;a:5:{s:4:"time";d:1698343743.540353;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698343743.50923;s:3:"end";d:1698343743.541873;s:6:"memory";i:4827104;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1660:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.536987;i:4;a:0:{}i:5;i:4431576;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537001;i:4;a:0:{}i:5;i:4432368;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537007;i:4;a:0:{}i:5;i:4433200;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537013;i:4;a:0:{}i:5;i:4433984;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537019;i:4;a:0:{}i:5;i:4434816;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537025;i:4;a:0:{}i:5;i:4435632;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537031;i:4;a:0:{}i:5;i:4436440;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698343743.537035;i:4;a:0:{}i:5;i:4437456;}}s:5:"route";s:54:"upload/0/1/upload/image/2022/1119/1668852376239631.png";s:6:"action";N;}";s:7:"request";s:2411:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:404;s:14:"requestHeaders";a:4:{s:10:"connection";s:5:"close";s:15:"accept-encoding";s:4:"gzip";s:10:"user-agent";s:70:"Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)";s:4:"host";s:13:"124.71.161.49";}s:15:"responseHeaders";a:1:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";}s:5:"route";s:54:"upload/0/1/upload/image/2022/1119/1668852376239631.png";s:6:"action";N;s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:38:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:55:"/upload/0/1/upload/image/2022/1119/1668852376239631.png";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:12:"REDIRECT_URL";s:55:"/upload/0/1/upload/image/2022/1119/1668852376239631.png";s:11:"REMOTE_PORT";s:5:"32956";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"167.248.133.35";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:4:"gzip";s:15:"HTTP_USER_AGENT";s:70:"Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)";s:9:"HTTP_HOST";s:13:"124.71.161.49";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:15:"REDIRECT_STATUS";s:3:"200";s:14:"REDIRECT_HTTPS";s:2:"on";s:18:"REDIRECT_dont-vary";s:1:"1";s:16:"REDIRECT_no-gzip";s:1:"1";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698343743.502344;s:12:"REQUEST_TIME";i:1698343743;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653aab3f81fae";s:3:"url";s:76:"https://124.71.161.49/upload/0/1/upload/image/2022/1119/1668852376239631.png";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"167.248.133.35";s:4:"time";d:1698343743.502344;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4827104;s:14:"processingTime";d:0.03262519836425781;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653ab1b482931.data b/runtime/debug/653ab1b482931.data deleted file mode 100644 index 44d97bf..0000000 --- a/runtime/debug/653ab1b482931.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14082:"a:1:{s:8:"messages";a:30:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698345396.526373;i:4;a:0:{}i:5;i:2454640;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698345396.526388;i:4;a:0:{}i:5;i:2455816;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698345396.534476;i:4;a:0:{}i:5;i:3701408;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698345396.535951;i:4;a:0:{}i:5;i:3900136;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.536085;i:4;a:0:{}i:5;i:3902376;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.53687;i:4;a:0:{}i:5;i:4116888;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.537596;i:4;a:0:{}i:5;i:4190608;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698345396.53777;i:4;a:0:{}i:5;i:4191440;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698345396.538085;i:4;a:0:{}i:5;i:4215616;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.538116;i:4;a:0:{}i:5;i:4222008;}i:18;a:6:{i:0;s:19:"Route requested: ''";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698345396.539366;i:4;a:0:{}i:5;i:4434992;}i:19;a:6:{i:0;s:24:"Route to run: site/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698345396.540495;i:4;a:0:{}i:5;i:4561168;}i:20;a:6:{i:0;s:61:"Running action: app\controllers\SiteController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698345396.5406;i:4;a:0:{}i:5;i:4568856;}i:21;a:6:{i:0;s:76:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698345396.54155;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:4695664;}i:22;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.54471;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5258384;}i:23;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.544988;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5266216;}i:24;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.550012;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6095728;}i:25;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698345396.550049;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6098912;}i:30;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.654354;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6151448;}i:33;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.659643;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6432976;}i:36;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.66221;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6436848;}i:37;a:6:{i:0;s:78:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698345396.66241;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6416312;}i:38;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.666093;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7000600;}i:39;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.666411;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7007568;}i:42;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.668987;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7011040;}i:43;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.669101;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7011560;}i:44;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.669306;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7018336;}i:47;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698345396.67185;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7022664;}i:48;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 172.105.128.13";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698345396.673728;i:4;a:2:{i:0;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:30;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7251168;}i:49;a:6:{i:0;s:103:"Access to debugger is denied due to IP address restriction. The requesting IP address is 172.105.128.13";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698345396.674104;i:4;a:0:{}i:5;i:7217816;}}}";s:9:"profiling";s:10725:"a:3:{s:6:"memory";i:7278160;s:4:"time";d:0.1576399803161621;s:8:"messages";a:12:{i:26;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698345396.550057;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6100792;}i:27;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698345396.650759;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6114208;}i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.650826;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6115200;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.653718;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6125240;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.654386;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155144;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.657068;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6158280;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.659667;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434728;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.662067;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6437776;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.666439;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009320;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.668884;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7012368;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.669323;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7020088;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.671737;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7023184;}}}";s:2:"db";s:9140:"a:1:{s:8:"messages";a:10:{i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.650826;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6115200;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.653718;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6125240;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.654386;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155144;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.657068;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6158280;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.659667;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434728;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.662067;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6437776;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.666439;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009320;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.668884;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7012368;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.669323;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7020088;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698345396.671737;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7023184;}}}";s:5:"event";s:4800:"a:28:{i:0;a:5:{s:4:"time";d:1698345396.536858;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698345396.539094;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698345396.540574;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698345396.540583;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:4;a:5:{s:4:"time";d:1698345396.541546;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698345396.547579;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:6;a:5:{s:4:"time";d:1698345396.650749;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698345396.662109;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:8;a:5:{s:4:"time";d:1698345396.66215;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698345396.662365;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698345396.662408;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:11;a:5:{s:4:"time";d:1698345396.663657;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:12;a:5:{s:4:"time";d:1698345396.666263;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698345396.668916;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:14;a:5:{s:4:"time";d:1698345396.66895;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698345396.669186;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698345396.67177;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:17;a:5:{s:4:"time";d:1698345396.671815;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698345396.671975;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698345396.673747;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:20;a:5:{s:4:"time";d:1698345396.673858;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:21;a:5:{s:4:"time";d:1698345396.673889;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698345396.673903;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:23;a:5:{s:4:"time";d:1698345396.673909;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698345396.673917;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:25;a:5:{s:4:"time";d:1698345396.673924;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698345396.674113;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:27;a:5:{s:4:"time";d:1698345396.674182;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698345396.517392;s:3:"end";d:1698345396.675118;s:6:"memory";i:7278160;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1667:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539331;i:4;a:0:{}i:5;i:4429384;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539339;i:4;a:0:{}i:5;i:4430176;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539344;i:4;a:0:{}i:5;i:4431008;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539347;i:4;a:0:{}i:5;i:4431792;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539351;i:4;a:0:{}i:5;i:4432624;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539354;i:4;a:0:{}i:5;i:4433440;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539357;i:4;a:0:{}i:5;i:4434248;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698345396.539359;i:4;a:0:{}i:5;i:4435264;}}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";}";s:7:"request";s:2462:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:4:{s:15:"accept-encoding";s:4:"gzip";s:6:"accept";s:3:"*/*";s:10:"user-agent";s:114:"Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36";s:4:"host";s:13:"124.71.161.49";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=4cd686cf6cd30cb09a72f749113957671d3616d31748c65631d211b148b79476a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22i4k3SWMFxPy9L00Vr97ID8ZQTyb8KtX4%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:33:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:1:"/";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:11:"REMOTE_PORT";s:5:"25556";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:14:"172.105.128.13";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:20:"HTTP_ACCEPT_ENCODING";s:4:"gzip";s:11:"HTTP_ACCEPT";s:3:"*/*";s:15:"HTTP_USER_AGENT";s:114:"Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36";s:9:"HTTP_HOST";s:13:"124.71.161.49";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698345396.513111;s:12:"REQUEST_TIME";i:1698345396;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:1552:"a:4:{s:19:"app\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:12:"css/site.css";}s:2:"js";a:0:{}s:7:"depends";a:2:{i:0;s:16:"yii\web\YiiAsset";i:1;s:28:"yii\bootstrap\BootstrapAsset";}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:16:"yii\web\YiiAsset";a:9:{s:10:"sourcePath";s:61:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/assets";s:2:"js";a:1:{i:0;s:6:"yii.js";}s:7:"depends";a:1:{i:0;s:19:"yii\web\JqueryAsset";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/681caeaf";s:7:"baseUrl";s:16:"/assets/681caeaf";s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:19:"yii\web\JqueryAsset";a:9:{s:10:"sourcePath";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/jquery/dist";s:2:"js";a:1:{i:0;s:9:"jquery.js";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/d64e97c0";s:7:"baseUrl";s:16:"/assets/d64e97c0";s:7:"depends";a:0:{}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:28:"yii\bootstrap\BootstrapAsset";a:9:{s:10:"sourcePath";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/bootstrap/dist";s:3:"css";a:1:{i:0;s:17:"css/bootstrap.css";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/f80bdf98";s:7:"baseUrl";s:16:"/assets/f80bdf98";s:7:"depends";a:0:{}s:2:"js";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653ab1b482931";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"172.105.128.13";s:4:"time";d:1698345396.513111;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278160;s:14:"processingTime";d:0.1576399803161621;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653ab5c6147eb.data b/runtime/debug/653ab5c6147eb.data deleted file mode 100644 index a1deb5b..0000000 --- a/runtime/debug/653ab5c6147eb.data +++ /dev/null @@ -1,72 +0,0 @@ -a:14:{s:6:"config";s:1928:"a:5:{s:10:"phpVersion";s:6:"7.2.33";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:6:"7.2.33";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:1;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:62:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:64:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:70:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14082:"a:1:{s:8:"messages";a:30:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698346438.075498;i:4;a:0:{}i:5;i:2452824;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698346438.075512;i:4;a:0:{}i:5;i:2454000;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698346438.083584;i:4;a:0:{}i:5;i:3699592;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698346438.08507;i:4;a:0:{}i:5;i:3898320;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.085208;i:4;a:0:{}i:5;i:3900560;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.085892;i:4;a:0:{}i:5;i:4115072;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.086561;i:4;a:0:{}i:5;i:4188792;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698346438.086646;i:4;a:0:{}i:5;i:4189624;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698346438.086892;i:4;a:0:{}i:5;i:4213800;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.086917;i:4;a:0:{}i:5;i:4220192;}i:18;a:6:{i:0;s:19:"Route requested: ''";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698346438.088078;i:4;a:0:{}i:5;i:4432264;}i:19;a:6:{i:0;s:24:"Route to run: site/index";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698346438.08915;i:4;a:0:{}i:5;i:4558440;}i:20;a:6:{i:0;s:61:"Running action: app\controllers\SiteController::actionIndex()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698346438.089244;i:4;a:0:{}i:5;i:4566128;}i:21;a:6:{i:0;s:76:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698346438.090172;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:4692936;}i:22;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.09322;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5255656;}i:23;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.093451;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:5263488;}i:24;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.098175;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6093000;}i:25;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698346438.098212;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6096184;}i:30;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.178536;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6148720;}i:33;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.183922;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6430248;}i:36;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.186686;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6434120;}i:37;a:6:{i:0;s:78:"Rendering view file: /www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698346438.186894;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:6413584;}i:38;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.190399;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6997872;}i:39;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.190656;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7004840;}i:42;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.193384;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7008312;}i:43;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.193485;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:157;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7008832;}i:44;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.193669;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7015608;}i:47;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698346438.196364;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:176;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7019936;}i:48;a:6:{i:0;s:100:"Access to debugger is denied due to IP address restriction. The requesting IP address is 1.85.216.31";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698346438.198197;i:4;a:2:{i:0;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:30;s:8:"function";s:7:"endBody";s:5:"class";s:12:"yii\web\View";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/controllers/SiteController.php";s:4:"line";i:32;s:8:"function";s:6:"render";s:5:"class";s:19:"yii\base\Controller";s:4:"type";s:2:"->";}}i:5;i:7248440;}i:49;a:6:{i:0;s:100:"Access to debugger is denied due to IP address restriction. The requesting IP address is 1.85.216.31";i:1;i:2;i:2;s:29:"yii\debug\Module::checkAccess";i:3;d:1698346438.198553;i:4;a:0:{}i:5;i:7215088;}}}";s:9:"profiling";s:10725:"a:3:{s:6:"memory";i:7275432;s:4:"time";d:0.13251519203186035;s:8:"messages";a:12:{i:26;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698346438.098219;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6098064;}i:27;a:6:{i:0;s:69:"Opening DB connection: mysql:host=app.3dxh.dev.1nww.com;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698346438.174965;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6111480;}i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.175003;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6112472;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.177949;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6122512;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.178569;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6152416;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.181433;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155552;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.183943;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6432000;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.18656;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6435048;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.190674;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7006592;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.193293;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009640;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.193685;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7017360;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.196289;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7020456;}}}";s:2:"db";s:9139:"a:1:{s:8:"messages";a:10:{i:28;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.175003;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6112472;}i:29;a:6:{i:0;s:34:"SHOW FULL COLUMNS FROM `cx_option`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.177949;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6122512;}i:31;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.178569;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6152416;}i:32;a:6:{i:0;s:774:"SELECT - `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, - `kcu`.`COLUMN_NAME` AS `column_name`, - `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, - `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` -FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` -JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON - ( - `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR - (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) - ) AND - `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND - `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` -WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() -AND `rc`.`TABLE_NAME` = 'cx_option' AND `kcu`.`TABLE_NAME` = 'cx_option'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.181433;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6155552;}i:34;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.183943;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6432000;}i:35;a:6:{i:0;s:87:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.18656;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:60;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:55:"/www/wwwroot/app.3dxh.dev.1nww.com/views/site/index.php";s:4:"line";i:7;s:8:"function";s:11:"getSiteName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:6435048;}i:40;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.190674;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7006592;}i:41;a:6:{i:0;s:93:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_SHORT_NAME')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.193293;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:72;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:21;s:8:"function";s:16:"getSiteShortName";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7009640;}i:45;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.193685;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7017360;}i:46;a:6:{i:0;s:86:"SELECT * FROM `cx_option` WHERE (`cx_mch_id`=0) AND (`group`=0) AND (`key`='SITE_ICO')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698346438.196289;i:4;a:3:{i:0;a:5:{s:4:"file";s:52:"/www/wwwroot/app.3dxh.dev.1nww.com/models/Option.php";s:4:"line";i:164;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:60:"/www/wwwroot/app.3dxh.dev.1nww.com/components/SiteHelper.php";s:4:"line";i:156;s:8:"function";s:9:"getOption";s:5:"class";s:17:"app\models\Option";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:57:"/www/wwwroot/app.3dxh.dev.1nww.com/views/layouts/main.php";s:4:"line";i:22;s:8:"function";s:10:"getSiteICO";s:5:"class";s:25:"app\components\SiteHelper";s:4:"type";s:2:"::";}}i:5;i:7020456;}}}";s:5:"event";s:4801:"a:28:{i:0;a:5:{s:4:"time";d:1698346438.085881;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698346438.087791;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698346438.08922;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:3;a:5:{s:4:"time";d:1698346438.089229;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:4;a:5:{s:4:"time";d:1698346438.090168;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698346438.095925;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:6;a:5:{s:4:"time";d:1698346438.174956;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:7;a:5:{s:4:"time";d:1698346438.186599;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:8;a:5:{s:4:"time";d:1698346438.186636;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:9;a:5:{s:4:"time";d:1698346438.186837;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698346438.186892;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:11;a:5:{s:4:"time";d:1698346438.188091;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:12;a:5:{s:4:"time";d:1698346438.190529;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:13;a:5:{s:4:"time";d:1698346438.193321;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:14;a:5:{s:4:"time";d:1698346438.19335;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:15;a:5:{s:4:"time";d:1698346438.193562;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:16;a:5:{s:4:"time";d:1698346438.196312;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:17;a:5:{s:4:"time";d:1698346438.196337;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"app\models\Option";}i:18;a:5:{s:4:"time";d:1698346438.196461;s:4:"name";s:9:"beginBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698346438.198216;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:20;a:5:{s:4:"time";d:1698346438.198316;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:21;a:5:{s:4:"time";d:1698346438.198346;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698346438.198358;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:30:"app\controllers\SiteController";}i:23;a:5:{s:4:"time";d:1698346438.198365;s:4:"name";s:11:"afterAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:24;a:5:{s:4:"time";d:1698346438.198372;s:4:"name";s:12:"afterRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:25;a:5:{s:4:"time";d:1698346438.198378;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:26;a:5:{s:4:"time";d:1698346438.198563;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:27;a:5:{s:4:"time";d:1698346438.198604;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698346438.066949;s:3:"end";d:1698346438.19955;s:6:"memory";i:7275432;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1665:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.088043;i:4;a:0:{}i:5;i:4426656;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.088052;i:4;a:0:{}i:5;i:4427448;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.088056;i:4;a:0:{}i:5;i:4428280;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.08806;i:4;a:0:{}i:5;i:4429064;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.088063;i:4;a:0:{}i:5;i:4429896;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.088066;i:4;a:0:{}i:5;i:4430712;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.08807;i:4;a:0:{}i:5;i:4431520;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698346438.088072;i:4;a:0:{}i:5;i:4432536;}}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";}";s:7:"request";s:2107:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:2:{s:6:"accept";s:3:"*/*";s:4:"host";s:17:"124.71.161.49:443";}s:15:"responseHeaders";a:2:{s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:10:"Set-Cookie";s:204:"_csrf=f5d21c17ae230dc57794e24a4ff4a78ed09027b2b36f267997dc6dcc7e8ebe8ba%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22AwUCP06cB_EEUlWE014a8KzUs0VMHrXM%22%3B%7D; path=/; samesite=Lax; HttpOnly";}s:5:"route";s:10:"site/index";s:6:"action";s:45:"app\controllers\SiteController::actionIndex()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:3:"GET";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:1;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:31:{s:4:"USER";s:3:"www";s:4:"HOME";s:9:"/home/www";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:1:"/";s:12:"QUERY_STRING";s:0:"";s:14:"REQUEST_METHOD";s:3:"GET";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.0";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:11:"REMOTE_PORT";s:5:"48530";s:15:"SCRIPT_FILENAME";s:48:"/www/wwwroot/app.3dxh.dev.1nww.com/web/index.php";s:12:"SERVER_ADMIN";s:21:"webmaster@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:5:"https";s:13:"DOCUMENT_ROOT";s:39:"/www/wwwroot/app.3dxh.dev.1nww.com/web/";s:11:"REMOTE_ADDR";s:11:"1.85.216.31";s:11:"SERVER_PORT";s:3:"443";s:11:"SERVER_ADDR";s:11:"192.168.0.8";s:11:"SERVER_NAME";s:13:"124.71.161.49";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:16:"SERVER_SIGNATURE";s:59:"
Apache Server at 124.71.161.49 Port 443
-";s:15:"LD_LIBRARY_PATH";s:22:"/www/server/apache/lib";s:4:"PATH";s:49:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";s:11:"HTTP_ACCEPT";s:3:"*/*";s:9:"HTTP_HOST";s:17:"124.71.161.49:443";s:17:"proxy-nokeepalive";s:1:"1";s:5:"HTTPS";s:2:"on";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698346438.062702;s:12:"REQUEST_TIME";i:1698346438;}s:3:"GET";a:0:{}s:4:"POST";a:0:{}s:6:"COOKIE";a:0:{}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:1552:"a:4:{s:19:"app\assets\AppAsset";a:9:{s:8:"basePath";s:38:"/www/wwwroot/app.3dxh.dev.1nww.com/web";s:7:"baseUrl";s:0:"";s:3:"css";a:1:{i:0;s:12:"css/site.css";}s:2:"js";a:0:{}s:7:"depends";a:2:{i:0;s:16:"yii\web\YiiAsset";i:1;s:28:"yii\bootstrap\BootstrapAsset";}s:10:"sourcePath";N;s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:16:"yii\web\YiiAsset";a:9:{s:10:"sourcePath";s:61:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/yiisoft/yii2/assets";s:2:"js";a:1:{i:0;s:6:"yii.js";}s:7:"depends";a:1:{i:0;s:19:"yii\web\JqueryAsset";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/681caeaf";s:7:"baseUrl";s:16:"/assets/681caeaf";s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:19:"yii\web\JqueryAsset";a:9:{s:10:"sourcePath";s:65:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/jquery/dist";s:2:"js";a:1:{i:0;s:9:"jquery.js";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/d64e97c0";s:7:"baseUrl";s:16:"/assets/d64e97c0";s:7:"depends";a:0:{}s:3:"css";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}s:28:"yii\bootstrap\BootstrapAsset";a:9:{s:10:"sourcePath";s:68:"/www/wwwroot/app.3dxh.dev.1nww.com/vendor/bower-asset/bootstrap/dist";s:3:"css";a:1:{i:0;s:17:"css/bootstrap.css";}s:8:"basePath";s:54:"/www/wwwroot/app.3dxh.dev.1nww.com/web/assets/f80bdf98";s:7:"baseUrl";s:16:"/assets/f80bdf98";s:7:"depends";a:0:{}s:2:"js";a:0:{}s:9:"jsOptions";a:0:{}s:10:"cssOptions";a:0:{}s:14:"publishOptions";a:0:{}}}";s:7:"summary";a:12:{s:3:"tag";s:13:"653ab5c6147eb";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"1.85.216.31";s:4:"time";d:1698346438.062702;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7275432;s:14:"processingTime";d:0.13251519203186035;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653b83a48a63e.data b/runtime/debug/653b83a48a63e.data new file mode 100644 index 0000000..bb8c557 --- /dev/null +++ b/runtime/debug/653b83a48a63e.data @@ -0,0 +1,67 @@ +a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:16969:"a:1:{s:8:"messages";a:46:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399140.522753;i:4;a:0:{}i:5;i:2496384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399140.522775;i:4;a:0:{}i:5;i:2497560;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399140.56591;i:4;a:0:{}i:5;i:4073416;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698399140.570001;i:4;a:0:{}i:5;i:4289864;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399140.570704;i:4;a:0:{}i:5;i:4292072;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399140.571827;i:4;a:0:{}i:5;i:4300256;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399140.574417;i:4;a:0:{}i:5;i:4372568;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399140.574724;i:4;a:0:{}i:5;i:4372912;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399140.576073;i:4;a:0:{}i:5;i:4396936;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399140.57612;i:4;a:0:{}i:5;i:4403328;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698399140.580013;i:4;a:0:{}i:5;i:4628576;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399140.580025;i:4;a:0:{}i:5;i:4630208;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399140.613632;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6059312;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399140.61374;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6061744;}i:24;a:6:{i:0;s:7412:"PDOException: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php:722 +Stack trace: +#0 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(722): PDO->__construct('mysql:host=127....', 'root', 'root', NULL) +#1 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(637): yii\db\Connection->createPdoInstance() +#2 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1067): yii\db\Connection->open() +#3 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1054): yii\db\Connection->getMasterPdo() +#4 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(261): yii\db\Connection->getSlavePdo() +#5 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(1163): yii\db\Command->prepare(true) +#6 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(410): yii\db\Command->queryInternal('fetchAll', NULL) +#7 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(320): yii\db\Command->queryAll() +#8 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(125): yii\db\mysql\Schema->findColumns(Object(yii\db\TableSchema)) +#9 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(756): yii\db\mysql\Schema->loadTableSchema('cx_wechat_app') +#10 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(192): yii\db\Schema->getTableMetadata('{{%wechat_app}}', 'schema', false) +#11 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(439): yii\db\Schema->getTableSchema('{{%wechat_app}}') +#12 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(266): yii\db\ActiveRecord::getTableSchema() +#13 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(238): yii\db\ActiveRecord::filterValidColumnNames(Object(yii\db\Connection), Array) +#14 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(195): yii\db\ActiveRecord::filterCondition(Array, Array) +#15 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\BaseActiveRecord.php(110): yii\db\ActiveRecord::findByCondition(Array) +#16 D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php(64): yii\db\BaseActiveRecord::findOne(Array) +#17 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\BaseObject.php(109): app\modules\api\controllers\Controller->init() +#18 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Controller.php(95): yii\base\BaseObject->__construct(Array) +#19 [internal function]: yii\base\Controller->__construct('user', Object(app\modules\api\Module), Array) +#20 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(411): ReflectionClass->newInstanceArgs(Array) +#21 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(170): yii\di\Container->build('app\\modules\\api...', Array, Array) +#22 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\BaseYii.php(345): yii\di\Container->get('app\\modules\\api...', Array) +#23 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(666): yii\BaseYii::createObject('app\\modules\\api...', Array) +#24 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(620): yii\base\Module->createControllerByID('user') +#25 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(612): yii\base\Module->createController('modify-user') +#26 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(546): yii\base\Module->createController('user/modify-use...') +#27 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/user/modify...', Array) +#28 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) +#29 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() +#30 {main} + +Next yii\db\Exception: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php:648 +Stack trace: +#0 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1067): yii\db\Connection->open() +#1 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1054): yii\db\Connection->getMasterPdo() +#2 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(261): yii\db\Connection->getSlavePdo() +#3 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(1163): yii\db\Command->prepare(true) +#4 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(410): yii\db\Command->queryInternal('fetchAll', NULL) +#5 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(320): yii\db\Command->queryAll() +#6 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(125): yii\db\mysql\Schema->findColumns(Object(yii\db\TableSchema)) +#7 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(756): yii\db\mysql\Schema->loadTableSchema('cx_wechat_app') +#8 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(192): yii\db\Schema->getTableMetadata('{{%wechat_app}}', 'schema', false) +#9 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(439): yii\db\Schema->getTableSchema('{{%wechat_app}}') +#10 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(266): yii\db\ActiveRecord::getTableSchema() +#11 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(238): yii\db\ActiveRecord::filterValidColumnNames(Object(yii\db\Connection), Array) +#12 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(195): yii\db\ActiveRecord::filterCondition(Array, Array) +#13 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\BaseActiveRecord.php(110): yii\db\ActiveRecord::findByCondition(Array) +#14 D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php(64): yii\db\BaseActiveRecord::findOne(Array) +#15 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\BaseObject.php(109): app\modules\api\controllers\Controller->init() +#16 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Controller.php(95): yii\base\BaseObject->__construct(Array) +#17 [internal function]: yii\base\Controller->__construct('user', Object(app\modules\api\Module), Array) +#18 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(411): ReflectionClass->newInstanceArgs(Array) +#19 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(170): yii\di\Container->build('app\\modules\\api...', Array, Array) +#20 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\BaseYii.php(345): yii\di\Container->get('app\\modules\\api...', Array) +#21 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(666): yii\BaseYii::createObject('app\\modules\\api...', Array) +#22 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(620): yii\base\Module->createControllerByID('user') +#23 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(612): yii\base\Module->createController('modify-user') +#24 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(546): yii\base\Module->createController('user/modify-use...') +#25 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/user/modify...', Array) +#26 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) +#27 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() +#28 {main} +Additional Information: +";i:1;i:1;i:2;s:16:"yii\db\Exception";i:3;d:1698399140.628849;i:4;a:0:{}i:5;i:5832608;}i:25;a:6:{i:0;s:100:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/exception.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.632434;i:4;a:0:{}i:5;i:5951984;}i:26;a:6:{i:0;s:108:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/previousException.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.634536;i:4;a:0:{}i:5;i:6080320;}i:27;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.637007;i:4;a:0:{}i:5;i:6243072;}i:28;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.638505;i:4;a:0:{}i:5;i:6249544;}i:29;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.639663;i:4;a:0:{}i:5;i:6256464;}i:30;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.64119;i:4;a:0:{}i:5;i:6261440;}i:31;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.643106;i:4;a:0:{}i:5;i:6266824;}i:32;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.6443;i:4;a:0:{}i:5;i:6268752;}i:33;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.645829;i:4;a:0:{}i:5;i:6188760;}i:34;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.646969;i:4;a:0:{}i:5;i:6190048;}i:35;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.648259;i:4;a:0:{}i:5;i:6214040;}i:36;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.649364;i:4;a:0:{}i:5;i:6219424;}i:37;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.650967;i:4;a:0:{}i:5;i:6218360;}i:38;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.652142;i:4;a:0:{}i:5;i:6223744;}i:39;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.653244;i:4;a:0:{}i:5;i:6225032;}i:40;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.654347;i:4;a:0:{}i:5;i:6231696;}i:41;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.655754;i:4;a:0:{}i:5;i:6335360;}i:42;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.657953;i:4;a:0:{}i:5;i:6166200;}i:43;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.660029;i:4;a:0:{}i:5;i:6191032;}i:44;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.661328;i:4;a:0:{}i:5;i:6229720;}i:45;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.662137;i:4;a:0:{}i:5;i:6157392;}i:46;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.663667;i:4;a:0:{}i:5;i:6253864;}i:47;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.664776;i:4;a:0:{}i:5;i:6255152;}i:48;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.666352;i:4;a:0:{}i:5;i:6242720;}i:49;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.667955;i:4;a:0:{}i:5;i:6260968;}i:50;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.669142;i:4;a:0:{}i:5;i:6262256;}i:51;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.670297;i:4;a:0:{}i:5;i:6267640;}i:52;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.671417;i:4;a:0:{}i:5;i:6268928;}i:53;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.672867;i:4;a:0:{}i:5;i:6208336;}i:54;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.676738;i:4;a:0:{}i:5;i:6271384;}i:55;a:6:{i:0;s:104:"Rendering view file: D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2/views/errorHandler/callStackItem.php";i:1;i:8;i:2;s:25:"yii\base\View::renderFile";i:3;d:1698399140.678214;i:4;a:0:{}i:5;i:6192152;}}}";s:9:"profiling";s:829:"a:3:{s:6:"memory";i:6750056;s:4:"time";d:0.2161710262298584;s:8:"messages";a:2:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399140.61376;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6062872;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399140.627481;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6085288;}}}";s:2:"db";s:27:"a:1:{s:8:"messages";a:0:{}}";s:5:"event";s:12205:"a:71:{i:0;a:5:{s:4:"time";d:1698399140.571815;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698399140.578819;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698399140.605267;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698399140.632425;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:4;a:5:{s:4:"time";d:1698399140.633808;s:4:"name";s:9:"beginPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:5;a:5:{s:4:"time";d:1698399140.63453;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:6;a:5:{s:4:"time";d:1698399140.635221;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:7;a:5:{s:4:"time";d:1698399140.637;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:8;a:5:{s:4:"time";d:1698399140.637648;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:9;a:5:{s:4:"time";d:1698399140.638499;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:10;a:5:{s:4:"time";d:1698399140.638978;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:11;a:5:{s:4:"time";d:1698399140.639657;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:12;a:5:{s:4:"time";d:1698399140.640121;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:13;a:5:{s:4:"time";d:1698399140.641183;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:14;a:5:{s:4:"time";d:1698399140.642067;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:15;a:5:{s:4:"time";d:1698399140.643099;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:16;a:5:{s:4:"time";d:1698399140.643601;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:17;a:5:{s:4:"time";d:1698399140.644295;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:18;a:5:{s:4:"time";d:1698399140.644781;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:19;a:5:{s:4:"time";d:1698399140.645821;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:20;a:5:{s:4:"time";d:1698399140.64633;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:21;a:5:{s:4:"time";d:1698399140.646963;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:22;a:5:{s:4:"time";d:1698399140.647426;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:23;a:5:{s:4:"time";d:1698399140.648253;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:24;a:5:{s:4:"time";d:1698399140.648725;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:25;a:5:{s:4:"time";d:1698399140.649358;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:26;a:5:{s:4:"time";d:1698399140.649943;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:27;a:5:{s:4:"time";d:1698399140.650961;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:28;a:5:{s:4:"time";d:1698399140.651457;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:29;a:5:{s:4:"time";d:1698399140.652137;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:30;a:5:{s:4:"time";d:1698399140.652607;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:31;a:5:{s:4:"time";d:1698399140.653238;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:32;a:5:{s:4:"time";d:1698399140.653711;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:33;a:5:{s:4:"time";d:1698399140.654342;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:34;a:5:{s:4:"time";d:1698399140.654817;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:35;a:5:{s:4:"time";d:1698399140.655748;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:36;a:5:{s:4:"time";d:1698399140.656216;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:37;a:5:{s:4:"time";d:1698399140.657946;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:38;a:5:{s:4:"time";d:1698399140.658763;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:39;a:5:{s:4:"time";d:1698399140.660022;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:40;a:5:{s:4:"time";d:1698399140.66052;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:41;a:5:{s:4:"time";d:1698399140.661322;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:42;a:5:{s:4:"time";d:1698399140.661797;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:43;a:5:{s:4:"time";d:1698399140.662131;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:44;a:5:{s:4:"time";d:1698399140.662638;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:45;a:5:{s:4:"time";d:1698399140.663661;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:46;a:5:{s:4:"time";d:1698399140.664137;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:47;a:5:{s:4:"time";d:1698399140.664771;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:48;a:5:{s:4:"time";d:1698399140.665244;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:49;a:5:{s:4:"time";d:1698399140.666345;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:50;a:5:{s:4:"time";d:1698399140.667004;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:51;a:5:{s:4:"time";d:1698399140.667949;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:52;a:5:{s:4:"time";d:1698399140.66847;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:53;a:5:{s:4:"time";d:1698399140.669136;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:54;a:5:{s:4:"time";d:1698399140.669634;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:55;a:5:{s:4:"time";d:1698399140.670291;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:56;a:5:{s:4:"time";d:1698399140.670775;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:57;a:5:{s:4:"time";d:1698399140.671411;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:58;a:5:{s:4:"time";d:1698399140.671892;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:59;a:5:{s:4:"time";d:1698399140.672859;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:60;a:5:{s:4:"time";d:1698399140.673374;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:61;a:5:{s:4:"time";d:1698399140.676729;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:62;a:5:{s:4:"time";d:1698399140.677349;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:63;a:5:{s:4:"time";d:1698399140.678207;s:4:"name";s:12:"beforeRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:64;a:5:{s:4:"time";d:1698399140.678686;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:65;a:5:{s:4:"time";d:1698399140.680562;s:4:"name";s:7:"endBody";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:66;a:5:{s:4:"time";d:1698399140.680576;s:4:"name";s:7:"endPage";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:67;a:5:{s:4:"time";d:1698399140.682387;s:4:"name";s:11:"afterRender";s:5:"class";s:18:"yii\base\ViewEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:12:"yii\web\View";}i:68;a:5:{s:4:"time";d:1698399140.682447;s:4:"name";s:10:"beforeSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:69;a:5:{s:4:"time";d:1698399140.694186;s:4:"name";s:12:"afterPrepare";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}i:70;a:5:{s:4:"time";d:1698399140.695187;s:4:"name";s:9:"afterSend";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:16:"yii\web\Response";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698399140.487134;s:3:"end";d:1698399140.703484;s:6:"memory";i:6750056;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1621:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.579808;i:4;a:0:{}i:5;i:4622984;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.579826;i:4;a:0:{}i:5;i:4623736;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.579839;i:4;a:0:{}i:5;i:4624488;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.579847;i:4;a:0:{}i:5;i:4625240;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.579855;i:4;a:0:{}i:5;i:4625992;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.57998;i:4;a:0:{}i:5;i:4626744;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.579994;i:4;a:0:{}i:5;i:4627496;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399140.58;i:4;a:0:{}i:5;i:4628512;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";N;}";s:7:"request";s:4986:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:500;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------830050929129078381707191";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:5:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";s:12:"Content-Type";s:24:"text/html; charset=UTF-8";s:11:"X-Debug-Tag";s:13:"653b83a48a63e";s:16:"X-Debug-Duration";s:3:"208";s:12:"X-Debug-Link";s:37:"/debug/default/view?tag=653b83a48a63e";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";N;s:12:"actionParams";N;s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"54260";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------830050929129078381707191";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698399140.446058;s:12:"REQUEST_TIME";i:1698399140;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222225";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653b83a48a63e";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399140.446058;s:10:"statusCode";i:500;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6750056;s:14:"processingTime";d:0.2161710262298584;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653b83b106b22.data b/runtime/debug/653b83b106b22.data new file mode 100644 index 0000000..717211e --- /dev/null +++ b/runtime/debug/653b83b106b22.data @@ -0,0 +1,141 @@ +a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14208:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399153.003027;i:4;a:0:{}i:5;i:2496384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399153.00305;i:4;a:0:{}i:5;i:2497560;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399153.026641;i:4;a:0:{}i:5;i:4073416;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698399153.029732;i:4;a:0:{}i:5;i:4289864;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.030649;i:4;a:0:{}i:5;i:4292072;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.030906;i:4;a:0:{}i:5;i:4300256;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.032825;i:4;a:0:{}i:5;i:4372568;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399153.033101;i:4;a:0:{}i:5;i:4372912;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399153.03373;i:4;a:0:{}i:5;i:4396936;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.033774;i:4;a:0:{}i:5;i:4403328;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698399153.03625;i:4;a:0:{}i:5;i:4628576;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399153.036261;i:4;a:0:{}i:5;i:4630208;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.060872;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6059312;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399153.061098;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6061744;}i:26;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.067116;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6148056;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.07493;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484640;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698399153.092142;i:4;a:0:{}i:5;i:6713672;}i:33;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698399153.098901;i:4;a:0:{}i:5;i:6798816;}i:34;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.111891;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7279416;}i:37;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.114337;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7300384;}i:40;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.115571;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7305832;}i:43;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698399153.117148;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:87;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7328496;}i:44;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.118071;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7350192;}i:45;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.11897;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7357216;}i:46;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.119168;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7359472;}i:47;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.119348;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7362176;}i:48;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.119509;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7364432;}i:49;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UAb8VF')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.119877;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7367904;}i:52;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399153.120512;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7371264;}i:53;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UAb8VF')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399154.160823;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7495040;}i:56;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'xuKH1bjBuI3FZiUKw4C13KE_lJTQiiav', 0, 'UAb8VF', '$2y$13$cxF6Zs/1S7GeYGBfbIOO7uhYI5HORuYA/EzB3d36lPIepQD2X5Ek2', '0sVoHcnsN3Cp-N_-fcMfM8KNcWLXHFk8', '', 1698399154, 1698399154, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399154.294026;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424344;}}}";s:9:"profiling";s:14321:"a:3:{s:6:"memory";i:9676688;s:4:"time";d:1.3143439292907715;s:8:"messages";a:20:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399153.061125;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6062872;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399153.06311;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112032;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.063173;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.065149;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.06716;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.068211;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.074972;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.075847;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.111929;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.113243;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.114372;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.115293;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.115597;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.116317;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UAb8VF')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.119938;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UAb8VF')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.120461;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UAb8VF')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399154.160878;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UAb8VF')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399154.161338;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'xuKH1bjBuI3FZiUKw4C13KE_lJTQiiav', 0, 'UAb8VF', '$2y$13$cxF6Zs/1S7GeYGBfbIOO7uhYI5HORuYA/EzB3d36lPIepQD2X5Ek2', '0sVoHcnsN3Cp-N_-fcMfM8KNcWLXHFk8', '', 1698399154, 1698399154, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399154.294077;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'xuKH1bjBuI3FZiUKw4C13KE_lJTQiiav', 0, 'UAb8VF', '$2y$13$cxF6Zs/1S7GeYGBfbIOO7uhYI5HORuYA/EzB3d36lPIepQD2X5Ek2', '0sVoHcnsN3Cp-N_-fcMfM8KNcWLXHFk8', '', 1698399154, 1698399154, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399154.295075;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:2:"db";s:13519:"a:1:{s:8:"messages";a:18:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.063173;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.065149;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.06716;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.068211;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.074972;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.075847;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.111929;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.113243;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.114372;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.115293;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.115597;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.116317;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UAb8VF')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.119938;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UAb8VF')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399153.120461;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UAb8VF')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399154.160878;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UAb8VF')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399154.161338;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'xuKH1bjBuI3FZiUKw4C13KE_lJTQiiav', 0, 'UAb8VF', '$2y$13$cxF6Zs/1S7GeYGBfbIOO7uhYI5HORuYA/EzB3d36lPIepQD2X5Ek2', '0sVoHcnsN3Cp-N_-fcMfM8KNcWLXHFk8', '', 1698399154, 1698399154, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399154.294077;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'xuKH1bjBuI3FZiUKw4C13KE_lJTQiiav', 0, 'UAb8VF', '$2y$13$cxF6Zs/1S7GeYGBfbIOO7uhYI5HORuYA/EzB3d36lPIepQD2X5Ek2', '0sVoHcnsN3Cp-N_-fcMfM8KNcWLXHFk8', '', 1698399154, 1698399154, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399154.295075;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:5:"event";s:3716:"a:21:{i:0;a:5:{s:4:"time";d:1698399153.030893;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698399153.035604;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698399153.054607;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698399153.063101;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698399153.075905;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698399153.075972;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698399153.092824;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698399153.09284;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698399153.098871;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:9;a:5:{s:4:"time";d:1698399153.108666;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:10;a:5:{s:4:"time";d:1698399153.108785;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:11;a:5:{s:4:"time";d:1698399153.111799;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698399153.117182;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:13;a:5:{s:4:"time";d:1698399153.119719;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698399154.152685;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:15;a:5:{s:4:"time";d:1698399154.152833;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:16;a:5:{s:4:"time";d:1698399154.15858;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698399154.158679;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698399154.161414;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698399154.161437;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698399154.295735;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698399152.984514;s:3:"end";d:1698399154.299054;s:6:"memory";i:9676688;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036173;i:4;a:0:{}i:5;i:4622984;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.03619;i:4;a:0:{}i:5;i:4623736;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036199;i:4;a:0:{}i:5;i:4624488;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036207;i:4;a:0:{}i:5;i:4625240;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036215;i:4;a:0:{}i:5;i:4625992;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036224;i:4;a:0:{}i:5;i:4626744;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036233;i:4;a:0:{}i:5;i:4627496;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399153.036238;i:4;a:0:{}i:5;i:4628512;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------258185873431369900757325";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"54270";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------258185873431369900757325";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698399152.969246;s:12:"REQUEST_TIME";i:1698399152;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222225";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653b83b106b22";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399152.969246;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.3143439292907715;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653b84467ab03.data b/runtime/debug/653b84467ab03.data new file mode 100644 index 0000000..3e0d310 --- /dev/null +++ b/runtime/debug/653b84467ab03.data @@ -0,0 +1,141 @@ +a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14209:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399302.40488;i:4;a:0:{}i:5;i:2496384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399302.405061;i:4;a:0:{}i:5;i:2497560;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399302.501542;i:4;a:0:{}i:5;i:4073416;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698399302.507192;i:4;a:0:{}i:5;i:4289864;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.509936;i:4;a:0:{}i:5;i:4292072;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.511156;i:4;a:0:{}i:5;i:4300256;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.513348;i:4;a:0:{}i:5;i:4372568;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399302.513591;i:4;a:0:{}i:5;i:4372912;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399302.514746;i:4;a:0:{}i:5;i:4396936;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.514791;i:4;a:0:{}i:5;i:4403328;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698399302.517961;i:4;a:0:{}i:5;i:4628576;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399302.517973;i:4;a:0:{}i:5;i:4630208;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.546818;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6059312;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399302.54687;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6061744;}i:26;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.553285;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6148056;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.560584;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484640;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698399302.577181;i:4;a:0:{}i:5;i:6713672;}i:33;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698399302.582636;i:4;a:0:{}i:5;i:6798816;}i:34;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.597133;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7279416;}i:37;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.599476;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7300384;}i:40;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600458;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7305832;}i:43;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698399302.601717;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:87;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7328496;}i:44;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.602584;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7350192;}i:45;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.603793;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7357216;}i:46;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.60398;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7359472;}i:47;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.604151;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7362176;}i:48;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.604317;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7364432;}i:49;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UILkUR')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.604609;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7367904;}i:52;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399302.605017;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7371264;}i:53;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UILkUR')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399303.632103;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7495040;}i:56;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'vyRZ8iIrg5QZ-JRK7LaQG8E50ia0-Pgs', 0, 'UILkUR', '$2y$13$3W7H22AwJ8qAuuCRhsaOu.ipdpbmQenyxou.7cmJNvkoUIVEjOhvq', 'rmWX0FsFDz1KqoBkSsRoEncZmBwrI_pa', '', 1698399303, 1698399303, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399303.71533;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424344;}}}";s:9:"profiling";s:14318:"a:3:{s:6:"memory";i:9676688;s:4:"time";d:1.3638410568237305;s:8:"messages";a:20:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399302.546889;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6062872;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399302.548924;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112032;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.548963;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.551486;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.553325;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.55409;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.560628;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.561312;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.5972;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.59887;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.599505;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600206;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600482;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600928;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UILkUR')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.604639;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UILkUR')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.60497;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UILkUR')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399303.632148;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UILkUR')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399303.632624;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'vyRZ8iIrg5QZ-JRK7LaQG8E50ia0-Pgs', 0, 'UILkUR', '$2y$13$3W7H22AwJ8qAuuCRhsaOu.ipdpbmQenyxou.7cmJNvkoUIVEjOhvq', 'rmWX0FsFDz1KqoBkSsRoEncZmBwrI_pa', '', 1698399303, 1698399303, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399303.715381;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'vyRZ8iIrg5QZ-JRK7LaQG8E50ia0-Pgs', 0, 'UILkUR', '$2y$13$3W7H22AwJ8qAuuCRhsaOu.ipdpbmQenyxou.7cmJNvkoUIVEjOhvq', 'rmWX0FsFDz1KqoBkSsRoEncZmBwrI_pa', '', 1698399303, 1698399303, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399303.716042;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:2:"db";s:13515:"a:1:{s:8:"messages";a:18:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.548963;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.551486;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.553325;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.55409;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.560628;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.561312;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.5972;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.59887;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.599505;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600206;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600482;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.600928;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UILkUR')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.604639;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UILkUR')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399302.60497;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UILkUR')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399303.632148;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UILkUR')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399303.632624;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'vyRZ8iIrg5QZ-JRK7LaQG8E50ia0-Pgs', 0, 'UILkUR', '$2y$13$3W7H22AwJ8qAuuCRhsaOu.ipdpbmQenyxou.7cmJNvkoUIVEjOhvq', 'rmWX0FsFDz1KqoBkSsRoEncZmBwrI_pa', '', 1698399303, 1698399303, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399303.715381;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'vyRZ8iIrg5QZ-JRK7LaQG8E50ia0-Pgs', 0, 'UILkUR', '$2y$13$3W7H22AwJ8qAuuCRhsaOu.ipdpbmQenyxou.7cmJNvkoUIVEjOhvq', 'rmWX0FsFDz1KqoBkSsRoEncZmBwrI_pa', '', 1698399303, 1698399303, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399303.716042;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:5:"event";s:3717:"a:21:{i:0;a:5:{s:4:"time";d:1698399302.511141;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698399302.517093;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698399302.539781;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698399302.548915;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698399302.561368;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698399302.561437;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698399302.577737;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698399302.577752;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698399302.582609;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:9;a:5:{s:4:"time";d:1698399302.59414;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:10;a:5:{s:4:"time";d:1698399302.594257;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:11;a:5:{s:4:"time";d:1698399302.597041;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698399302.601748;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:13;a:5:{s:4:"time";d:1698399302.604489;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698399303.622941;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:15;a:5:{s:4:"time";d:1698399303.623241;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:16;a:5:{s:4:"time";d:1698399303.630049;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698399303.630104;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698399303.632678;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698399303.632721;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698399303.716665;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698399302.35765;s:3:"end";d:1698399303.721732;s:6:"memory";i:9676688;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517883;i:4;a:0:{}i:5;i:4622984;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517902;i:4;a:0:{}i:5;i:4623736;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517911;i:4;a:0:{}i:5;i:4624488;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517919;i:4;a:0:{}i:5;i:4625240;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517927;i:4;a:0:{}i:5;i:4625992;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517936;i:4;a:0:{}i:5;i:4626744;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.517945;i:4;a:0:{}i:5;i:4627496;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399302.51795;i:4;a:0:{}i:5;i:4628512;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------783877215600089808561710";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"56082";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------783877215600089808561710";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698399302.310241;s:12:"REQUEST_TIME";i:1698399302;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222225";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653b84467ab03";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399302.310241;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.3638410568237305;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653b84571c978.data b/runtime/debug/653b84571c978.data new file mode 100644 index 0000000..4ea809e --- /dev/null +++ b/runtime/debug/653b84571c978.data @@ -0,0 +1,141 @@ +a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14211:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399319.086041;i:4;a:0:{}i:5;i:2496384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399319.086062;i:4;a:0:{}i:5;i:2497560;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399319.116335;i:4;a:0:{}i:5;i:4073416;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698399319.119375;i:4;a:0:{}i:5;i:4289864;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.119818;i:4;a:0:{}i:5;i:4292072;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.12012;i:4;a:0:{}i:5;i:4300256;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.122383;i:4;a:0:{}i:5;i:4372568;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399319.122646;i:4;a:0:{}i:5;i:4372912;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399319.123544;i:4;a:0:{}i:5;i:4396936;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.123591;i:4;a:0:{}i:5;i:4403328;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698399319.126322;i:4;a:0:{}i:5;i:4628576;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399319.12638;i:4;a:0:{}i:5;i:4630208;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.146598;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6059312;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399319.146646;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6061744;}i:26;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.150841;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6148056;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.156703;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484640;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698399319.166496;i:4;a:0:{}i:5;i:6713672;}i:33;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698399319.169374;i:4;a:0:{}i:5;i:6798816;}i:34;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.179024;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7279416;}i:37;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.180987;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7300384;}i:40;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181883;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7305832;}i:43;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698399319.183001;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:87;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7328496;}i:44;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.183688;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7350192;}i:45;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.184529;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7357216;}i:46;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.184712;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7359472;}i:47;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.184891;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7362176;}i:48;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.185066;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7364432;}i:49;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UsILLy')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.185353;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7367904;}i:52;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399319.185798;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7371264;}i:53;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UsILLy')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399320.289316;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7495040;}i:56;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g9K7DA6LjfLTB9zQ_B3_U90MoE_RA7hp', 0, 'UsILLy', '$2y$13$k7wzD0ZIbZBpYew6VdpE7uwgt2WbeBTirmqf97.E3OnLaOVj.7PBy', 'lx0YZloifNwTrXVVQQ1eUc7CjZvgBykK', '', 1698399320, 1698399320, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399320.371614;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424344;}}}";s:9:"profiling";s:14320:"a:3:{s:6:"memory";i:9676688;s:4:"time";d:1.3158588409423828;s:8:"messages";a:20:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399319.146664;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6062872;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399319.148369;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112032;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.148407;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.149468;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.150879;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.151467;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.156774;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.1575;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.179063;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.180382;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181017;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181627;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181907;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.18238;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UsILLy')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.185384;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UsILLy')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.185751;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UsILLy')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399320.289385;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UsILLy')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399320.290095;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g9K7DA6LjfLTB9zQ_B3_U90MoE_RA7hp', 0, 'UsILLy', '$2y$13$k7wzD0ZIbZBpYew6VdpE7uwgt2WbeBTirmqf97.E3OnLaOVj.7PBy', 'lx0YZloifNwTrXVVQQ1eUc7CjZvgBykK', '', 1698399320, 1698399320, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399320.371662;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g9K7DA6LjfLTB9zQ_B3_U90MoE_RA7hp', 0, 'UsILLy', '$2y$13$k7wzD0ZIbZBpYew6VdpE7uwgt2WbeBTirmqf97.E3OnLaOVj.7PBy', 'lx0YZloifNwTrXVVQQ1eUc7CjZvgBykK', '', 1698399320, 1698399320, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399320.372254;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:2:"db";s:13517:"a:1:{s:8:"messages";a:18:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.148407;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.149468;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.150879;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.151467;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.156774;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.1575;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.179063;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.180382;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181017;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181627;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.181907;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.18238;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UsILLy')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.185384;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UsILLy')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399319.185751;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UsILLy')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399320.289385;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UsILLy')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399320.290095;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g9K7DA6LjfLTB9zQ_B3_U90MoE_RA7hp', 0, 'UsILLy', '$2y$13$k7wzD0ZIbZBpYew6VdpE7uwgt2WbeBTirmqf97.E3OnLaOVj.7PBy', 'lx0YZloifNwTrXVVQQ1eUc7CjZvgBykK', '', 1698399320, 1698399320, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399320.371662;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'g9K7DA6LjfLTB9zQ_B3_U90MoE_RA7hp', 0, 'UsILLy', '$2y$13$k7wzD0ZIbZBpYew6VdpE7uwgt2WbeBTirmqf97.E3OnLaOVj.7PBy', 'lx0YZloifNwTrXVVQQ1eUc7CjZvgBykK', '', 1698399320, 1698399320, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399320.372254;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:5:"event";s:3717:"a:21:{i:0;a:5:{s:4:"time";d:1698399319.120106;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698399319.125673;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698399319.141771;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698399319.148358;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698399319.157564;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698399319.157644;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698399319.166867;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698399319.166883;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698399319.169354;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:9;a:5:{s:4:"time";d:1698399319.177039;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:10;a:5:{s:4:"time";d:1698399319.177165;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:11;a:5:{s:4:"time";d:1698399319.178943;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698399319.183033;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:13;a:5:{s:4:"time";d:1698399319.185236;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698399320.284419;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:15;a:5:{s:4:"time";d:1698399320.284584;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:16;a:5:{s:4:"time";d:1698399320.287723;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698399320.287778;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698399320.29025;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698399320.290278;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698399320.372663;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698399319.061674;s:3:"end";d:1698399320.377828;s:6:"memory";i:9676688;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126247;i:4;a:0:{}i:5;i:4622984;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126264;i:4;a:0:{}i:5;i:4623736;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126273;i:4;a:0:{}i:5;i:4624488;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.12628;i:4;a:0:{}i:5;i:4625240;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126288;i:4;a:0:{}i:5;i:4625992;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126297;i:4;a:0:{}i:5;i:4626744;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126305;i:4;a:0:{}i:5;i:4627496;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399319.126311;i:4;a:0:{}i:5;i:4628512;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------159160857865458625071848";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"56113";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------159160857865458625071848";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698399319.045634;s:12:"REQUEST_TIME";i:1698399319;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222225";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653b84571c978";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399319.045634;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.3158588409423828;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653b84ded5803.data b/runtime/debug/653b84ded5803.data new file mode 100644 index 0000000..25854d6 --- /dev/null +++ b/runtime/debug/653b84ded5803.data @@ -0,0 +1,141 @@ +a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14210:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399454.804642;i:4;a:0:{}i:5;i:2496384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399454.804694;i:4;a:0:{}i:5;i:2497560;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399454.873233;i:4;a:0:{}i:5;i:4073416;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698399454.878139;i:4;a:0:{}i:5;i:4289864;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.878654;i:4;a:0:{}i:5;i:4292072;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.878867;i:4;a:0:{}i:5;i:4300256;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.880782;i:4;a:0:{}i:5;i:4372568;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399454.881008;i:4;a:0:{}i:5;i:4372912;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399454.882169;i:4;a:0:{}i:5;i:4396936;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.882208;i:4;a:0:{}i:5;i:4403328;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698399454.885278;i:4;a:0:{}i:5;i:4628576;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399454.88529;i:4;a:0:{}i:5;i:4630208;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.912343;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6059312;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399454.912393;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6061744;}i:26;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.917224;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6148056;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.923766;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484640;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698399454.939858;i:4;a:0:{}i:5;i:6713672;}i:33;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698399454.945775;i:4;a:0:{}i:5;i:6798816;}i:34;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.958892;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7279416;}i:37;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.96109;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7300384;}i:40;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961921;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7305832;}i:43;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698399454.963205;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:87;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7328496;}i:44;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.964091;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7350192;}i:45;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.965308;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7357216;}i:46;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.965539;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7359472;}i:47;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.96575;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7362176;}i:48;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.965971;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7364432;}i:49;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UlGMDG')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.966301;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7367904;}i:52;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399454.966782;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7371264;}i:53;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UlGMDG')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399455.972512;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7495040;}i:56;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', '-KiUYeOMt9Xm-D20_eRE9g2jgGWKIvuT', 0, 'UlGMDG', '$2y$13$dKCiSPVH3HThKhtlK9V0YeFpv3Vhi4IQqyC1T6iMe7eUSNBCisM/u', 'dUwFAGK4sUB9X2rXOTjqxMKfXBqtwFnU', '', 1698399455, 1698399455, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399456.048517;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424344;}}}";s:9:"profiling";s:14321:"a:3:{s:6:"memory";i:9676688;s:4:"time";d:1.2797701358795166;s:8:"messages";a:20:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399454.912412;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6062872;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399454.914425;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112032;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.914461;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.915601;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.917261;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.917855;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.923799;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.924684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.958929;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.960476;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961119;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961672;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961944;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.96238;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UlGMDG')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.966334;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UlGMDG')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.966731;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UlGMDG')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399455.972558;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UlGMDG')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399455.972997;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', '-KiUYeOMt9Xm-D20_eRE9g2jgGWKIvuT', 0, 'UlGMDG', '$2y$13$dKCiSPVH3HThKhtlK9V0YeFpv3Vhi4IQqyC1T6iMe7eUSNBCisM/u', 'dUwFAGK4sUB9X2rXOTjqxMKfXBqtwFnU', '', 1698399455, 1698399455, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399456.04857;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', '-KiUYeOMt9Xm-D20_eRE9g2jgGWKIvuT', 0, 'UlGMDG', '$2y$13$dKCiSPVH3HThKhtlK9V0YeFpv3Vhi4IQqyC1T6iMe7eUSNBCisM/u', 'dUwFAGK4sUB9X2rXOTjqxMKfXBqtwFnU', '', 1698399455, 1698399455, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399456.049179;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:2:"db";s:13518:"a:1:{s:8:"messages";a:18:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.914461;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.915601;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.917261;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.917855;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.923799;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.924684;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.958929;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.960476;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961119;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961672;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.961944;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222225'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.96238;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UlGMDG')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.966334;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='UlGMDG')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399454.966731;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UlGMDG')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399455.972558;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='UlGMDG')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399455.972997;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', '-KiUYeOMt9Xm-D20_eRE9g2jgGWKIvuT', 0, 'UlGMDG', '$2y$13$dKCiSPVH3HThKhtlK9V0YeFpv3Vhi4IQqyC1T6iMe7eUSNBCisM/u', 'dUwFAGK4sUB9X2rXOTjqxMKfXBqtwFnU', '', 1698399455, 1698399455, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399456.04857;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222225', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', '-KiUYeOMt9Xm-D20_eRE9g2jgGWKIvuT', 0, 'UlGMDG', '$2y$13$dKCiSPVH3HThKhtlK9V0YeFpv3Vhi4IQqyC1T6iMe7eUSNBCisM/u', 'dUwFAGK4sUB9X2rXOTjqxMKfXBqtwFnU', '', 1698399455, 1698399455, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399456.049179;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:5:"event";s:3718:"a:21:{i:0;a:5:{s:4:"time";d:1698399454.878854;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698399454.884444;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698399454.905579;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698399454.914416;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698399454.924743;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698399454.924813;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698399454.940398;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698399454.940413;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698399454.945751;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:9;a:5:{s:4:"time";d:1698399454.956388;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:10;a:5:{s:4:"time";d:1698399454.956496;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:11;a:5:{s:4:"time";d:1698399454.958813;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698399454.963236;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:13;a:5:{s:4:"time";d:1698399454.966169;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698399455.967317;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:15;a:5:{s:4:"time";d:1698399455.967454;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:16;a:5:{s:4:"time";d:1698399455.970825;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698399455.970876;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698399455.973043;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698399455.973064;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698399456.049806;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:91:"a:3:{s:5:"start";d:1698399454.773799;s:3:"end";d:1698399456.053766;s:6:"memory";i:9676688;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885204;i:4;a:0:{}i:5;i:4622984;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.88522;i:4;a:0:{}i:5;i:4623736;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885229;i:4;a:0:{}i:5;i:4624488;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885237;i:4;a:0:{}i:5;i:4625240;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885245;i:4;a:0:{}i:5;i:4625992;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885254;i:4;a:0:{}i:5;i:4626744;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885262;i:4;a:0:{}i:5;i:4627496;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399454.885267;i:4;a:0:{}i:5;i:4628512;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------862229993072666014245851";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9080";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"56541";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------862229993072666014245851";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698399454.737803;s:12:"REQUEST_TIME";i:1698399454;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222225";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653b84ded5803";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399454.737803;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.2797701358795166;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/653b84e82e2a8.data b/runtime/debug/653b84e82e2a8.data new file mode 100644 index 0000000..04e6307 --- /dev/null +++ b/runtime/debug/653b84e82e2a8.data @@ -0,0 +1,141 @@ +a:14:{s:6:"config";s:1870:"a:5:{s:10:"phpVersion";s:5:"7.3.4";s:10:"yiiVersion";s:6:"2.0.47";s:11:"application";a:8:{s:3:"yii";s:6:"2.0.47";s:4:"name";s:14:"My Application";s:7:"version";s:3:"1.0";s:8:"language";s:5:"zh-CN";s:14:"sourceLanguage";s:5:"en-US";s:7:"charset";s:5:"UTF-8";s:3:"env";s:3:"dev";s:5:"debug";b:1;}s:3:"php";a:5:{s:7:"version";s:5:"7.3.4";s:6:"xdebug";b:0;s:3:"apc";b:0;s:8:"memcache";b:0;s:9:"memcached";b:0;}s:10:"extensions";a:7:{s:18:"yiisoft/yii2-faker";a:3:{s:4:"name";s:18:"yiisoft/yii2-faker";s:7:"version";s:7:"2.0.5.0";s:5:"alias";a:1:{s:10:"@yii/faker";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-faker/src";}}s:24:"yiisoft/yii2-swiftmailer";a:3:{s:4:"name";s:24:"yiisoft/yii2-swiftmailer";s:7:"version";s:7:"2.1.3.0";s:5:"alias";a:1:{s:16:"@yii/swiftmailer";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-swiftmailer/src";}}s:22:"yiisoft/yii2-bootstrap";a:3:{s:4:"name";s:22:"yiisoft/yii2-bootstrap";s:7:"version";s:8:"2.0.11.0";s:5:"alias";a:1:{s:14:"@yii/bootstrap";s:60:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-bootstrap/src";}}s:16:"yiisoft/yii2-gii";a:3:{s:4:"name";s:16:"yiisoft/yii2-gii";s:7:"version";s:7:"2.1.4.0";s:5:"alias";a:1:{s:8:"@yii/gii";s:54:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-gii/src";}}s:18:"yiisoft/yii2-redis";a:3:{s:4:"name";s:18:"yiisoft/yii2-redis";s:7:"version";s:8:"2.0.18.0";s:5:"alias";a:1:{s:10:"@yii/redis";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-redis/src";}}s:18:"yiisoft/yii2-debug";a:3:{s:4:"name";s:18:"yiisoft/yii2-debug";s:7:"version";s:8:"2.1.21.0";s:5:"alias";a:1:{s:10:"@yii/debug";s:56:"D:\phpstudy_pro\WWW\cxfoot\vendor/yiisoft/yii2-debug/src";}}s:24:"jianyan74/yii2-websocket";a:3:{s:4:"name";s:24:"jianyan74/yii2-websocket";s:7:"version";s:7:"1.1.1.0";s:5:"alias";a:1:{s:18:"@jianyan/websocket";s:62:"D:\phpstudy_pro\WWW\cxfoot\vendor/jianyan74/yii2-websocket/src";}}}}";s:3:"log";s:14205:"a:1:{s:8:"messages";a:31:{i:0;a:6:{i:0;s:33:"Bootstrap with yii\log\Dispatcher";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399464.146034;i:4;a:0:{}i:5;i:2496384;}i:1;a:6:{i:0;s:21:"Loading module: debug";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399464.146096;i:4;a:0:{}i:5;i:2497560;}i:2;a:6:{i:0;s:44:"Bootstrap with yii\debug\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399464.1882;i:4;a:0:{}i:5;i:4073416;}i:3;a:6:{i:0;s:61:"Opening redis DB connection: tcp://127.0.0.1:6379, database=0";i:1;i:8;i:2;s:26:"yii\redis\Connection::open";i:3;d:1698399464.195396;i:4;a:0:{}i:5;i:4289864;}i:4;a:6:{i:0;s:31:"Executing Redis Command: SELECT";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.196137;i:4;a:0:{}i:5;i:4292072;}i:5;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.196386;i:4;a:0:{}i:5;i:4300256;}i:6;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.198764;i:4;a:0:{}i:5;i:4372568;}i:7;a:6:{i:0;s:19:"Loading module: gii";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399464.198991;i:4;a:0:{}i:5;i:4372912;}i:8;a:6:{i:0;s:42:"Bootstrap with yii\gii\Module::bootstrap()";i:1;i:8;i:2;s:31:"yii\base\Application::bootstrap";i:3;d:1698399464.200096;i:4;a:0:{}i:5;i:4396936;}i:9;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.200131;i:4;a:0:{}i:5;i:4403328;}i:18;a:6:{i:0;s:39:"Route requested: 'api/user/modify-user'";i:1;i:8;i:2;s:34:"yii\web\Application::handleRequest";i:3;d:1698399464.203778;i:4;a:0:{}i:5;i:4628576;}i:19;a:6:{i:0;s:19:"Loading module: api";i:1;i:8;i:2;s:26:"yii\base\Module::getModule";i:3;d:1698399464.203789;i:4;a:0:{}i:5;i:4630208;}i:20;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.239652;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6059312;}i:21;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:4;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399464.239805;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6061744;}i:26;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.24577;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6148056;}i:29;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.253994;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6484640;}i:32;a:6:{i:0;s:34:"Route to run: api/user/modify-user";i:1;i:8;i:2;s:30:"yii\base\Controller::runAction";i:3;d:1698399464.271574;i:4;a:0:{}i:5;i:6713672;}i:33;a:6:{i:0;s:78:"Running action: app\modules\api\controllers\UserController::actionModifyUser()";i:1;i:8;i:2;s:36:"yii\base\InlineAction::runWithParams";i:3;d:1698399464.2788;i:4;a:0:{}i:5;i:6798816;}i:34;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.300454;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7279416;}i:37;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.302418;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7300384;}i:40;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222233'";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.30326;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7305832;}i:43;a:6:{i:0;s:17:"Begin transaction";i:1;i:8;i:2;s:25:"yii\db\Transaction::begin";i:3;d:1698399464.304487;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:87;s:8:"function";s:16:"beginTransaction";s:5:"class";s:17:"yii\db\Connection";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7328496;}i:44;a:6:{i:0;s:37:"Executing Redis Command: CLUSTER INFO";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.30536;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7350192;}i:45;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.306579;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:356;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7357216;}i:46;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.30676;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:362;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7359472;}i:47;a:6:{i:0;s:28:"Executing Redis Command: GET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.306928;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:67;s:8:"function";s:3:"get";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:409;s:8:"function";s:8:"getCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7362176;}i:48;a:6:{i:0;s:28:"Executing Redis Command: SET";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.307079;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:47;s:8:"function";s:3:"set";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:414;s:8:"function";s:8:"setCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:365;s:8:"function";s:9:"_generate";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7364432;}i:49;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Ulf7mf')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.307341;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7367904;}i:52;a:6:{i:0;s:28:"Executing Redis Command: DEL";i:1;i:8;i:2;s:36:"yii\redis\Connection::executeCommand";i:3;d:1698399464.307702;i:4;a:3:{i:0;a:5:{s:4:"file";s:54:"D:\phpstudy_pro\WWW\cxfoot\components\FlashStorage.php";s:4:"line";i:57;s:8:"function";s:6:"delete";s:5:"class";s:17:"yii\caching\Cache";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:368;s:8:"function";s:11:"deleteCache";s:5:"class";s:27:"app\components\FlashStorage";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}}i:5;i:7371264;}i:53;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Ulf7mf')";i:1;i:4;i:2;s:21:"yii\db\Command::query";i:3;d:1698399465.268574;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7495040;}i:56;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222233', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'ISUdiqMdWKAdJB7s83KO40k5_5MEMs_p', 0, 'Ulf7mf', '$2y$13$xy3UynELfBM6gVzNeaWKoO4zvDUKaN/9BI34LJEUud/Oi891qI2qC', 'GCIAHxJcBgO1EX2kc9qfHWPoqptOJI-D', '', 1698399465, 1698399465, '')";i:1;i:4;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399465.361822;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424344;}}}";s:9:"profiling";s:14322:"a:3:{s:6:"memory";i:9676688;s:4:"time";d:1.2574028968811035;s:8:"messages";a:20:{i:22;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:80;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399464.239825;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6062872;}i:23;a:6:{i:0;s:57:"Opening DB connection: mysql:host=127.0.0.1;dbname=cxfoot";i:1;i:96;i:2;s:23:"yii\db\Connection::open";i:3;d:1698399464.241917;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112032;}i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.242042;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.243739;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.24589;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.246514;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.254034;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.254712;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.300492;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.301799;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.302446;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.302985;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222233'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.303283;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222233'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.303687;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Ulf7mf')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.307372;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Ulf7mf')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.307656;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Ulf7mf')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399465.268625;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Ulf7mf')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399465.269092;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222233', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'ISUdiqMdWKAdJB7s83KO40k5_5MEMs_p', 0, 'Ulf7mf', '$2y$13$xy3UynELfBM6gVzNeaWKoO4zvDUKaN/9BI34LJEUud/Oi891qI2qC', 'GCIAHxJcBgO1EX2kc9qfHWPoqptOJI-D', '', 1698399465, 1698399465, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399465.362061;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222233', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'ISUdiqMdWKAdJB7s83KO40k5_5MEMs_p', 0, 'Ulf7mf', '$2y$13$xy3UynELfBM6gVzNeaWKoO4zvDUKaN/9BI34LJEUud/Oi891qI2qC', 'GCIAHxJcBgO1EX2kc9qfHWPoqptOJI-D', '', 1698399465, 1698399465, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399465.363508;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:2:"db";s:13519:"a:1:{s:8:"messages";a:18:{i:24;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.242042;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6112272;}i:25;a:6:{i:0;s:38:"SHOW FULL COLUMNS FROM `cx_wechat_app`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.243739;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6128104;}i:27;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.24589;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6150920;}i:28;a:6:{i:0;s:782:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_wechat_app' AND `kcu`.`TABLE_NAME` = 'cx_wechat_app'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.246514;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6153304;}i:30;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.254034;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6485888;}i:31;a:6:{i:0;s:71:"SELECT * FROM `cx_wechat_app` WHERE (`cx_mch_id`=0) AND (`is_delete`=0)";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.254712;i:4;a:1:{i:0;a:5:{s:4:"file";s:65:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php";s:4:"line";i:64;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}}i:5;i:6492560;}i:35;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.300492;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7281160;}i:36;a:6:{i:0;s:32:"SHOW FULL COLUMNS FROM `cx_user`";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.301799;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7310928;}i:38;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.302446;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7303624;}i:39;a:6:{i:0;s:770:"SELECT + `kcu`.`CONSTRAINT_NAME` AS `constraint_name`, + `kcu`.`COLUMN_NAME` AS `column_name`, + `kcu`.`REFERENCED_TABLE_NAME` AS `referenced_table_name`, + `kcu`.`REFERENCED_COLUMN_NAME` AS `referenced_column_name` +FROM `information_schema`.`REFERENTIAL_CONSTRAINTS` AS `rc` +JOIN `information_schema`.`KEY_COLUMN_USAGE` AS `kcu` ON + ( + `kcu`.`CONSTRAINT_CATALOG` = `rc`.`CONSTRAINT_CATALOG` OR + (`kcu`.`CONSTRAINT_CATALOG` IS NULL AND `rc`.`CONSTRAINT_CATALOG` IS NULL) + ) AND + `kcu`.`CONSTRAINT_SCHEMA` = `rc`.`CONSTRAINT_SCHEMA` AND + `kcu`.`CONSTRAINT_NAME` = `rc`.`CONSTRAINT_NAME` +WHERE `rc`.`CONSTRAINT_SCHEMA` = database() AND `kcu`.`TABLE_SCHEMA` = database() +AND `rc`.`TABLE_NAME` = 'cx_user' AND `kcu`.`TABLE_NAME` = 'cx_user'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.302985;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7306384;}i:41;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222233'";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.303283;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7307664;}i:42;a:6:{i:0;s:58:"SELECT * FROM `cx_user` WHERE `mobile_phone`='18222222233'";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.303687;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:77;s:8:"function";s:7:"findOne";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"::";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7311296;}i:50;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Ulf7mf')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.307372;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7370136;}i:51;a:6:{i:0;s:64:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `username`='Ulf7mf')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399464.307656;i:4;a:3:{i:0;a:5:{s:4:"file";s:42:"D:\phpstudy_pro\WWW\cxfoot\models\User.php";s:4:"line";i:366;s:8:"function";s:6:"exists";s:5:"class";s:12:"yii\db\Query";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:90;s:8:"function";s:16:"generateUsername";s:5:"class";s:15:"app\models\User";s:4:"type";s:2:"::";}i:2;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7372352;}i:54;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Ulf7mf')";i:1;i:80;i:2;s:21:"yii\db\Command::query";i:3;d:1698399465.268625;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7496912;}i:55;a:6:{i:0;s:74:"SELECT EXISTS(SELECT * FROM `cx_user` WHERE `cx_user`.`username`='Ulf7mf')";i:1;i:96;i:2;s:21:"yii\db\Command::query";i:3;d:1698399465.269092;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:7498752;}i:57;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222233', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'ISUdiqMdWKAdJB7s83KO40k5_5MEMs_p', 0, 'Ulf7mf', '$2y$13$xy3UynELfBM6gVzNeaWKoO4zvDUKaN/9BI34LJEUud/Oi891qI2qC', 'GCIAHxJcBgO1EX2kc9qfHWPoqptOJI-D', '', 1698399465, 1698399465, '')";i:1;i:80;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399465.362061;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9422264;}i:58;a:6:{i:0;s:507:"INSERT INTO `cx_user` (`cx_mch_id`, `real_name`, `mobile_phone`, `gender`, `is_view`, `mobile_prefix`, `nickname`, `avatar_url`, `access_token`, `type`, `username`, `password`, `auth_key`, `email`, `created_at`, `updated_at`, `desc`) VALUES (0, '王五', '18222222233', 1, '42.5', '86', '王五', '/statics/images/avatar.jpg', 'ISUdiqMdWKAdJB7s83KO40k5_5MEMs_p', 0, 'Ulf7mf', '$2y$13$xy3UynELfBM6gVzNeaWKoO4zvDUKaN/9BI34LJEUud/Oi891qI2qC', 'GCIAHxJcBgO1EX2kc9qfHWPoqptOJI-D', '', 1698399465, 1698399465, '')";i:1;i:96;i:2;s:23:"yii\db\Command::execute";i:3;d:1698399465.363508;i:4;a:2:{i:0;a:5:{s:4:"file";s:64:"D:\phpstudy_pro\WWW\cxfoot\modules\api\models\UserModifyForm.php";s:4:"line";i:109;s:8:"function";s:4:"save";s:5:"class";s:23:"yii\db\BaseActiveRecord";s:4:"type";s:2:"->";}i:1;a:5:{s:4:"file";s:69:"D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\UserController.php";s:4:"line";i:93;s:8:"function";s:11:"modify_user";s:5:"class";s:37:"app\modules\api\models\UserModifyForm";s:4:"type";s:2:"->";}}i:5;i:9424416;}}}";s:5:"event";s:3716:"a:21:{i:0;a:5:{s:4:"time";d:1698399464.196374;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:20:"yii\redis\Connection";}i:1;a:5:{s:4:"time";d:1698399464.202774;s:4:"name";s:13:"beforeRequest";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:2;a:5:{s:4:"time";d:1698399464.231424;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:3;a:5:{s:4:"time";d:1698399464.241909;s:4:"name";s:9:"afterOpen";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:4;a:5:{s:4:"time";d:1698399464.254767;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:5;a:5:{s:4:"time";d:1698399464.254831;s:4:"name";s:9:"afterFind";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:27:"app\models\wechat\WechatApp";}i:6;a:5:{s:4:"time";d:1698399464.272131;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:19:"yii\web\Application";}i:7;a:5:{s:4:"time";d:1698399464.272147;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:22:"app\modules\api\Module";}i:8;a:5:{s:4:"time";d:1698399464.278768;s:4:"name";s:12:"beforeAction";s:5:"class";s:20:"yii\base\ActionEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:42:"app\modules\api\controllers\UserController";}i:9;a:5:{s:4:"time";d:1698399464.295926;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:10;a:5:{s:4:"time";d:1698399464.296129;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:37:"app\modules\api\models\UserModifyForm";}i:11;a:5:{s:4:"time";d:1698399464.300364;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:12;a:5:{s:4:"time";d:1698399464.304516;s:4:"name";s:16:"beginTransaction";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:17:"yii\db\Connection";}i:13;a:5:{s:4:"time";d:1698399464.307239;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:14;a:5:{s:4:"time";d:1698399465.261671;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:15;a:5:{s:4:"time";d:1698399465.262567;s:4:"name";s:14:"beforeValidate";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:16;a:5:{s:4:"time";d:1698399465.266815;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:17;a:5:{s:4:"time";d:1698399465.266872;s:4:"name";s:4:"init";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:18:"yii\db\ActiveQuery";}i:18;a:5:{s:4:"time";d:1698399465.269139;s:4:"name";s:13:"afterValidate";s:5:"class";s:14:"yii\base\Event";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:19;a:5:{s:4:"time";d:1698399465.26916;s:4:"name";s:12:"beforeInsert";s:5:"class";s:19:"yii\base\ModelEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}i:20;a:5:{s:4:"time";d:1698399465.36418;s:4:"name";s:11:"afterInsert";s:5:"class";s:21:"yii\db\AfterSaveEvent";s:8:"isStatic";s:1:"0";s:11:"senderClass";s:15:"app\models\User";}}";s:4:"mail";s:6:"a:0:{}";s:8:"timeline";s:90:"a:3:{s:5:"start";d:1698399464.11044;s:3:"end";d:1698399465.368038;s:6:"memory";i:9676688;}";s:4:"dump";s:6:"a:0:{}";s:6:"router";s:1693:"a:3:{s:8:"messages";a:8:{i:10;a:6:{i:0;a:3:{s:4:"rule";s:3:"gii";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203586;i:4;a:0:{}i:5;i:4622984;}i:11;a:6:{i:0;a:3:{s:4:"rule";s:12:"gii/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203602;i:4;a:0:{}i:5;i:4623736;}i:12;a:6:{i:0;a:3:{s:4:"rule";s:41:"gii//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203611;i:4;a:0:{}i:5;i:4624488;}i:13;a:6:{i:0;a:3:{s:4:"rule";s:5:"debug";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203619;i:4;a:0:{}i:5;i:4625240;}i:14;a:6:{i:0;a:3:{s:4:"rule";s:43:"debug//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203633;i:4;a:0:{}i:5;i:4625992;}i:15;a:6:{i:0;a:3:{s:4:"rule";s:38:"//";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203747;i:4;a:0:{}i:5;i:4626744;}i:16;a:6:{i:0;a:3:{s:4:"rule";s:29:"/";s:5:"match";b:0;s:6:"parent";N;}i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.20376;i:4;a:0:{}i:5;i:4627496;}i:17;a:6:{i:0;s:55:"No matching URL rules. Using default URL parsing logic.";i:1;i:8;i:2;s:32:"yii\web\UrlManager::parseRequest";i:3;d:1698399464.203766;i:4;a:0:{}i:5;i:4628512;}}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";}";s:7:"request";s:4867:"a:15:{s:7:"flashes";a:0:{}s:10:"statusCode";i:200;s:14:"requestHeaders";a:9:{s:14:"content-length";s:3:"508";s:12:"content-type";s:80:"multipart/form-data; boundary=--------------------------912394575891833185602202";s:4:"host";s:10:"cxfoot.com";s:6:"cookie";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:10:"connection";s:5:"close";s:15:"accept-encoding";s:17:"gzip, deflate, br";s:6:"accept";s:3:"*/*";s:13:"cache-control";s:8:"no-cache";s:10:"user-agent";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";}s:15:"responseHeaders";a:1:{s:12:"X-Powered-By";s:9:"PHP/7.3.4";}s:5:"route";s:20:"api/user/modify-user";s:6:"action";s:62:"app\modules\api\controllers\UserController::actionModifyUser()";s:12:"actionParams";a:0:{}s:7:"general";a:5:{s:6:"method";s:4:"POST";s:6:"isAjax";b:0;s:6:"isPjax";b:0;s:7:"isFlash";b:0;s:18:"isSecureConnection";b:0;}s:11:"requestBody";a:0:{}s:6:"SERVER";a:43:{s:4:"PATH";s:954:"C:\imagemagick;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64_win\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;E:\anzhuang\QTSystem\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Git\cmd;D:\svn\bin;C:\Users\Administrator\AppData\Local\Programs\Python\Python311;C:\Users\Administrator\AppData\Local\Programs\Python\Python311\Scripts;D:\Xftp 7\;D:\微信web开发者工具\dll;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;D:\PhpStorm 2021.2.1\bin;;D:\Microsoft VS Code\bin;D:\phpstudy_pro\Extensions\php\php7.4.3nts;C:\Users\Administrator\AppData\Local\ComposerSetup\bin;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin";s:10:"SYSTEMROOT";s:10:"C:\WINDOWS";s:7:"COMSPEC";s:27:"C:\WINDOWS\system32\cmd.exe";s:7:"PATHEXT";s:53:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC";s:6:"WINDIR";s:10:"C:\WINDOWS";s:5:"PHPRC";s:42:"D:/phpstudy_pro/Extensions/php/php7.3.4nts";s:21:"_FCGI_SHUTDOWN_EVENT_";s:4:"9184";s:11:"SCRIPT_NAME";s:10:"/index.php";s:11:"REQUEST_URI";s:137:"/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:14:"REQUEST_METHOD";s:4:"POST";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:21:"REDIRECT_QUERY_STRING";s:115:"access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:12:"REDIRECT_URL";s:21:"/api/user/modify-user";s:11:"REMOTE_PORT";s:5:"56573";s:15:"SCRIPT_FILENAME";s:40:"D:/phpstudy_pro/WWW/cxfoot/web/index.php";s:12:"SERVER_ADMIN";s:17:"admin@example.com";s:21:"CONTEXT_DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:14:"CONTEXT_PREFIX";s:0:"";s:14:"REQUEST_SCHEME";s:4:"http";s:13:"DOCUMENT_ROOT";s:30:"D:/phpstudy_pro/WWW/cxfoot/web";s:11:"REMOTE_ADDR";s:9:"127.0.0.1";s:11:"SERVER_PORT";s:2:"80";s:11:"SERVER_ADDR";s:9:"127.0.0.1";s:11:"SERVER_NAME";s:10:"cxfoot.com";s:15:"SERVER_SOFTWARE";s:73:"Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02";s:16:"SERVER_SIGNATURE";s:0:"";s:10:"SystemRoot";s:10:"C:\WINDOWS";s:14:"CONTENT_LENGTH";s:3:"508";s:12:"CONTENT_TYPE";s:80:"multipart/form-data; boundary=--------------------------912394575891833185602202";s:9:"HTTP_HOST";s:10:"cxfoot.com";s:11:"HTTP_COOKIE";s:148:"_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D";s:15:"HTTP_CONNECTION";s:5:"close";s:20:"HTTP_ACCEPT_ENCODING";s:17:"gzip, deflate, br";s:11:"HTTP_ACCEPT";s:3:"*/*";s:18:"HTTP_CACHE_CONTROL";s:8:"no-cache";s:15:"HTTP_USER_AGENT";s:35:"PostmanRuntime-ApipostRuntime/1.1.0";s:15:"REDIRECT_STATUS";s:3:"200";s:9:"FCGI_ROLE";s:9:"RESPONDER";s:8:"PHP_SELF";s:10:"/index.php";s:18:"REQUEST_TIME_FLOAT";d:1698399464.069484;s:12:"REQUEST_TIME";i:1698399464;}s:3:"GET";a:2:{s:12:"access_token";s:60:"bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=";s:6:"X-Csrf";s:32:"ag7x1Afy1r0q8j4y05vk3s4118hx7124";}s:4:"POST";a:4:{s:9:"real_name";s:6:"王五";s:6:"gender";s:1:"1";s:7:"is_view";s:4:"42.5";s:12:"mobile_phone";s:11:"18222222233";}s:6:"COOKIE";a:5:{s:5:"_csrf";s:72:"a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0";s:11:"s:5:"_csrf"";s:0:"";s:3:"i:1";s:0:"";s:39:"s:32:"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd"";s:0:"";s:1:"}";s:0:"";}s:5:"FILES";a:0:{}s:7:"SESSION";a:0:{}}";s:4:"user";s:2:"N;";s:5:"asset";s:6:"a:0:{}";s:7:"summary";a:12:{s:3:"tag";s:13:"653b84e82e2a8";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399464.069484;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.2574028968811035;}s:10:"exceptions";a:0:{}} \ No newline at end of file diff --git a/runtime/debug/index.data b/runtime/debug/index.data index 4cb92c1..974010f 100644 --- a/runtime/debug/index.data +++ b/runtime/debug/index.data @@ -1 +1 @@ -a:57:{s:13:"653a7dc7cb6ab";a:12:{s:3:"tag";s:13:"653a7dc7cb6ab";s:3:"url";s:34:"https://124.71.161.49/api/library/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"34.79.210.182";s:4:"time";d:1698332103.812034;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4846264;s:14:"processingTime";d:0.02556896209716797;}s:13:"653a943511520";a:12:{s:3:"tag";s:13:"653a943511520";s:3:"url";s:35:"https://app.3dxh.dev.1nww.com/admin";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:12:"49.234.35.33";s:4:"time";d:1698337845.047163;s:10:"statusCode";i:302;s:8:"sqlCount";i:3;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6859112;s:14:"processingTime";d:0.1197519302368164;}s:13:"653a9435a1eb7";a:12:{s:3:"tag";s:13:"653a9435a1eb7";s:3:"url";s:105:"https://app.3dxh.dev.1nww.com/admin/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fadmin";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"182.254.171.71";s:4:"time";d:1698337845.641225;s:10:"statusCode";i:200;s:8:"sqlCount";i:12;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7844568;s:14:"processingTime";d:0.12731599807739258;}s:13:"653a9953edd1b";a:12:{s:3:"tag";s:13:"653a9953edd1b";s:3:"url";s:105:"https://app.3dxh.dev.1nww.com/store/passport/login?return_url=https%3A%2F%2Fapp.3dxh.dev.1nww.com%2Fstore";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:12:"49.234.3.160";s:4:"time";d:1698339155.952355;s:10:"statusCode";i:200;s:8:"sqlCount";i:8;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7494704;s:14:"processingTime";d:0.14302301406860352;}s:13:"653aa7b054bcd";a:12:{s:3:"tag";s:13:"653aa7b054bcd";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"185.180.143.48";s:4:"time";d:1698342832.326477;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278160;s:14:"processingTime";d:0.1292881965637207;}s:13:"653aa7bbcf070";a:12:{s:3:"tag";s:13:"653aa7bbcf070";s:3:"url";s:34:"https://124.71.161.49/showLogin.cc";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"185.180.143.48";s:4:"time";d:1698342843.826929;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4841752;s:14:"processingTime";d:0.027029991149902344;}s:13:"653aab3cb779c";a:12:{s:3:"tag";s:13:"653aab3cb779c";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"167.248.133.35";s:4:"time";d:1698343740.730762;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7274848;s:14:"processingTime";d:0.125838041305542;}s:13:"653aab3db8735";a:12:{s:3:"tag";s:13:"653aab3db8735";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"167.248.133.35";s:4:"time";d:1698343741.733956;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278032;s:14:"processingTime";d:0.16422605514526367;}s:13:"653aab3f81fae";a:12:{s:3:"tag";s:13:"653aab3f81fae";s:3:"url";s:76:"https://124.71.161.49/upload/0/1/upload/image/2022/1119/1668852376239631.png";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"167.248.133.35";s:4:"time";d:1698343743.502344;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4827104;s:14:"processingTime";d:0.03262519836425781;}s:13:"653ab1b482931";a:12:{s:3:"tag";s:13:"653ab1b482931";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"172.105.128.13";s:4:"time";d:1698345396.513111;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278160;s:14:"processingTime";d:0.1576399803161621;}s:13:"653ab5c6147eb";a:12:{s:3:"tag";s:13:"653ab5c6147eb";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"1.85.216.31";s:4:"time";d:1698346438.062702;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7275432;s:14:"processingTime";d:0.13251519203186035;}s:13:"653ab5ec721cb";a:12:{s:3:"tag";s:13:"653ab5ec721cb";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"27.47.27.13";s:4:"time";d:1698346476.446033;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276216;s:14:"processingTime";d:0.09860110282897949;}s:13:"653ab5ecc0817";a:12:{s:3:"tag";s:13:"653ab5ecc0817";s:3:"url";s:76:"https://124.71.161.49/upload/0/1/upload/image/2022/1119/1668852376239631.png";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"175.19.75.235";s:4:"time";d:1698346476.76736;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4836256;s:14:"processingTime";d:0.025528907775878906;}s:13:"653abe9544d85";a:12:{s:3:"tag";s:13:"653abe9544d85";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"172.104.96.196";s:4:"time";d:1698348693.250455;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276120;s:14:"processingTime";d:0.13953208923339844;}s:13:"653ae1256cd3d";a:12:{s:3:"tag";s:13:"653ae1256cd3d";s:3:"url";s:41:"https://124.71.161.49/owa/auth/logon.aspx";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"192.241.223.4";s:4:"time";d:1698357541.425025;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4837840;s:14:"processingTime";d:0.025434017181396484;}s:13:"653b12a9f173e";a:12:{s:3:"tag";s:13:"653b12a9f173e";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:15:"185.180.143.137";s:4:"time";d:1698370217.966545;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278160;s:14:"processingTime";d:0.1338949203491211;}s:13:"653b1815612ac";a:12:{s:3:"tag";s:13:"653b1815612ac";s:3:"url";s:40:"https://124.71.161.49:443/Res/login.html";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.362383;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4840432;s:14:"processingTime";d:0.04695606231689453;}s:13:"653b1815646a0";a:12:{s:3:"tag";s:13:"653b1815646a0";s:3:"url";s:30:"https://124.71.161.49:443/99vt";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.378369;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4820848;s:14:"processingTime";d:0.03912711143493652;}s:13:"653b181565ea7";a:12:{s:3:"tag";s:13:"653b181565ea7";s:3:"url";s:53:"https://124.71.161.49:443/aaaaaaaaaaaaaaaaaaaaaaaaaqr";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.346346;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4823160;s:14:"processingTime";d:0.07731413841247559;}s:13:"653b1815664ed";a:12:{s:3:"tag";s:13:"653b1815664ed";s:3:"url";s:63:"https://124.71.161.49:443/webui/logoutconfirm.html?logon_hash=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.354559;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4827568;s:14:"processingTime";d:0.07044792175292969;}s:13:"653b18155a65a";a:12:{s:3:"tag";s:13:"653b18155a65a";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.347267;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278200;s:14:"processingTime";d:0.1324019432067871;}s:13:"653b18160e681";a:12:{s:3:"tag";s:13:"653b18160e681";s:3:"url";s:30:"https://124.71.161.49:443/99vu";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371606.037712;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4826480;s:14:"processingTime";d:0.025552988052368164;}s:13:"653b1b156a0b9";a:12:{s:3:"tag";s:13:"653b1b156a0b9";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:12:"47.92.124.54";s:4:"time";d:1698372373.412539;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7274824;s:14:"processingTime";d:0.13035798072814941;}s:13:"653b1d332fc98";a:12:{s:3:"tag";s:13:"653b1d332fc98";s:3:"url";s:50:"https://app.3dxh.dev.1nww.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372915.172936;s:10:"statusCode";i:200;s:8:"sqlCount";i:19;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7894960;s:14:"processingTime";d:0.6634218692779541;}s:13:"653b1d340124a";a:12:{s:3:"tag";s:13:"653b1d340124a";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=d3pJNjVUL1FoUmsvd0Foc0VwOFZtZktYV3RKNTlmUERKTTVnMnJDbktVWT0%3D&status=0&page=2&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372915.97695;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7741496;s:14:"processingTime";d:0.13130998611450195;}s:13:"653b1d3400da2";a:12:{s:3:"tag";s:13:"653b1d3400da2";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=d3pJNjVUL1FoUmsvd0Foc0VwOFZtZktYV3RKNTlmUERKTTVnMnJDbktVWT0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372915.980865;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.13680219650268555;}s:13:"653b1d4e2db83";a:12:{s:3:"tag";s:13:"653b1d4e2db83";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=d3pJNjVUL1FoUmsvd0Foc0VwOFZtZktYV3RKNTlmUERKTTVnMnJDbktVWT0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372942.163972;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.10489106178283691;}s:13:"653b1e021145e";a:12:{s:3:"tag";s:13:"653b1e021145e";s:3:"url";s:50:"https://app.3dxh.dev.1nww.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373122.048722;s:10:"statusCode";i:200;s:8:"sqlCount";i:19;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7896296;s:14:"processingTime";d:0.6269421577453613;}s:13:"653b1e023daf8";a:12:{s:3:"tag";s:13:"653b1e023daf8";s:3:"url";s:50:"https://app.3dxh.dev.1nww.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373122.230216;s:10:"statusCode";i:200;s:8:"sqlCount";i:19;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7896296;s:14:"processingTime";d:0.5959219932556152;}s:13:"653b1e02cd9df";a:12:{s:3:"tag";s:13:"653b1e02cd9df";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=MTY2bGhoL1JscU1YRXZHNzVEMzJTOVBqcVZrNjJXTkRoc1JkbVVyekJNbz0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373122.819665;s:10:"statusCode";i:200;s:8:"sqlCount";i:10;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7506000;s:14:"processingTime";d:0.0999751091003418;}s:13:"653b1e9dd3887";a:12:{s:3:"tag";s:13:"653b1e9dd3887";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373277.841142;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.1113579273223877;}s:13:"653b31fae18a9";a:12:{s:3:"tag";s:13:"653b31fae18a9";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698378234.889292;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.1679680347442627;}s:13:"653b31fae0a8d";a:12:{s:3:"tag";s:13:"653b31fae0a8d";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=2&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698378234.884534;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7741496;s:14:"processingTime";d:0.17647194862365723;}s:13:"653b34f889953";a:12:{s:3:"tag";s:13:"653b34f889953";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379000.541521;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.16112709045410156;}s:13:"653b34f9d2917";a:12:{s:3:"tag";s:13:"653b34f9d2917";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=1&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379001.840092;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.13307595252990723;}s:13:"653b34fc466d6";a:12:{s:3:"tag";s:13:"653b34fc466d6";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379004.265897;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.13575482368469238;}s:13:"653b34fea23e3";a:12:{s:3:"tag";s:13:"653b34fea23e3";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379006.641627;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10767507553100586;}s:13:"653b38ed3218b";a:12:{s:3:"tag";s:13:"653b38ed3218b";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"35.203.210.94";s:4:"time";d:1698380013.184549;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276024;s:14:"processingTime";d:0.1260838508605957;}s:13:"653b51e5848fa";a:12:{s:3:"tag";s:13:"653b51e5848fa";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"172.104.96.196";s:4:"time";d:1698386405.521182;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276120;s:14:"processingTime";d:0.1289980411529541;}s:13:"653b53a68ac61";a:12:{s:3:"tag";s:13:"653b53a68ac61";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698386854.546163;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.15754199028015137;}s:13:"653b53a6c849f";a:12:{s:3:"tag";s:13:"653b53a6c849f";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=1&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698386854.796934;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.1349620819091797;}s:13:"653b53a7a39bf";a:12:{s:3:"tag";s:13:"653b53a7a39bf";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698386855.647;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.13311195373535156;}s:13:"653b54f03f393";a:12:{s:3:"tag";s:13:"653b54f03f393";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387184.236593;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.13203191757202148;}s:13:"653b54f160b8c";a:12:{s:3:"tag";s:13:"653b54f160b8c";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387185.373382;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.13925909996032715;}s:13:"653b54f1d1140";a:12:{s:3:"tag";s:13:"653b54f1d1140";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387185.831098;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.1133878231048584;}s:13:"653b54f24f60e";a:12:{s:3:"tag";s:13:"653b54f24f60e";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387186.300861;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10817122459411621;}s:13:"653b54f9b76c4";a:12:{s:3:"tag";s:13:"653b54f9b76c4";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387193.726421;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.11021304130554199;}s:13:"653b54fa6185f";a:12:{s:3:"tag";s:13:"653b54fa6185f";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387194.376776;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10602188110351562;}s:13:"653b54fb7466c";a:12:{s:3:"tag";s:13:"653b54fb7466c";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387195.454873;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10492300987243652;}s:13:"653b54fc14aa3";a:12:{s:3:"tag";s:13:"653b54fc14aa3";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387196.062686;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10144209861755371;}s:13:"653b54fd60f67";a:12:{s:3:"tag";s:13:"653b54fd60f67";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387197.373257;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10657501220703125;}s:13:"653b54fddc628";a:12:{s:3:"tag";s:13:"653b54fddc628";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387197.874117;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.11177682876586914;}s:13:"653b54fe56e6b";a:12:{s:3:"tag";s:13:"653b54fe56e6b";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387198.333927;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10491800308227539;}s:13:"653b54fed6da3";a:12:{s:3:"tag";s:13:"653b54fed6da3";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387198.857706;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10045003890991211;}s:13:"653b54ff8eec6";a:12:{s:3:"tag";s:13:"653b54ff8eec6";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387199.562321;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10167598724365234;}s:13:"653b550118cf1";a:12:{s:3:"tag";s:13:"653b550118cf1";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387201.076463;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.11063194274902344;}s:13:"653b55020306c";a:12:{s:3:"tag";s:13:"653b55020306c";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387201.989957;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10572481155395508;}} \ No newline at end of file +a:52:{s:13:"653ab5ec721cb";a:12:{s:3:"tag";s:13:"653ab5ec721cb";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"27.47.27.13";s:4:"time";d:1698346476.446033;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276216;s:14:"processingTime";d:0.09860110282897949;}s:13:"653ab5ecc0817";a:12:{s:3:"tag";s:13:"653ab5ecc0817";s:3:"url";s:76:"https://124.71.161.49/upload/0/1/upload/image/2022/1119/1668852376239631.png";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"175.19.75.235";s:4:"time";d:1698346476.76736;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4836256;s:14:"processingTime";d:0.025528907775878906;}s:13:"653abe9544d85";a:12:{s:3:"tag";s:13:"653abe9544d85";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"172.104.96.196";s:4:"time";d:1698348693.250455;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276120;s:14:"processingTime";d:0.13953208923339844;}s:13:"653ae1256cd3d";a:12:{s:3:"tag";s:13:"653ae1256cd3d";s:3:"url";s:41:"https://124.71.161.49/owa/auth/logon.aspx";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"192.241.223.4";s:4:"time";d:1698357541.425025;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4837840;s:14:"processingTime";d:0.025434017181396484;}s:13:"653b12a9f173e";a:12:{s:3:"tag";s:13:"653b12a9f173e";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:15:"185.180.143.137";s:4:"time";d:1698370217.966545;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278160;s:14:"processingTime";d:0.1338949203491211;}s:13:"653b1815612ac";a:12:{s:3:"tag";s:13:"653b1815612ac";s:3:"url";s:40:"https://124.71.161.49:443/Res/login.html";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.362383;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4840432;s:14:"processingTime";d:0.04695606231689453;}s:13:"653b1815646a0";a:12:{s:3:"tag";s:13:"653b1815646a0";s:3:"url";s:30:"https://124.71.161.49:443/99vt";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.378369;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4820848;s:14:"processingTime";d:0.03912711143493652;}s:13:"653b181565ea7";a:12:{s:3:"tag";s:13:"653b181565ea7";s:3:"url";s:53:"https://124.71.161.49:443/aaaaaaaaaaaaaaaaaaaaaaaaaqr";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.346346;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4823160;s:14:"processingTime";d:0.07731413841247559;}s:13:"653b1815664ed";a:12:{s:3:"tag";s:13:"653b1815664ed";s:3:"url";s:63:"https://124.71.161.49:443/webui/logoutconfirm.html?logon_hash=1";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.354559;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4827568;s:14:"processingTime";d:0.07044792175292969;}s:13:"653b18155a65a";a:12:{s:3:"tag";s:13:"653b18155a65a";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371605.347267;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7278200;s:14:"processingTime";d:0.1324019432067871;}s:13:"653b18160e681";a:12:{s:3:"tag";s:13:"653b18160e681";s:3:"url";s:30:"https://124.71.161.49:443/99vu";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:11:"44.211.29.7";s:4:"time";d:1698371606.037712;s:10:"statusCode";i:404;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:4826480;s:14:"processingTime";d:0.025552988052368164;}s:13:"653b1b156a0b9";a:12:{s:3:"tag";s:13:"653b1b156a0b9";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:12:"47.92.124.54";s:4:"time";d:1698372373.412539;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7274824;s:14:"processingTime";d:0.13035798072814941;}s:13:"653b1d332fc98";a:12:{s:3:"tag";s:13:"653b1d332fc98";s:3:"url";s:50:"https://app.3dxh.dev.1nww.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372915.172936;s:10:"statusCode";i:200;s:8:"sqlCount";i:19;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7894960;s:14:"processingTime";d:0.6634218692779541;}s:13:"653b1d340124a";a:12:{s:3:"tag";s:13:"653b1d340124a";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=d3pJNjVUL1FoUmsvd0Foc0VwOFZtZktYV3RKNTlmUERKTTVnMnJDbktVWT0%3D&status=0&page=2&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372915.97695;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7741496;s:14:"processingTime";d:0.13130998611450195;}s:13:"653b1d3400da2";a:12:{s:3:"tag";s:13:"653b1d3400da2";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=d3pJNjVUL1FoUmsvd0Foc0VwOFZtZktYV3RKNTlmUERKTTVnMnJDbktVWT0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372915.980865;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.13680219650268555;}s:13:"653b1d4e2db83";a:12:{s:3:"tag";s:13:"653b1d4e2db83";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=d3pJNjVUL1FoUmsvd0Foc0VwOFZtZktYV3RKNTlmUERKTTVnMnJDbktVWT0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698372942.163972;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.10489106178283691;}s:13:"653b1e021145e";a:12:{s:3:"tag";s:13:"653b1e021145e";s:3:"url";s:50:"https://app.3dxh.dev.1nww.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373122.048722;s:10:"statusCode";i:200;s:8:"sqlCount";i:19;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7896296;s:14:"processingTime";d:0.6269421577453613;}s:13:"653b1e023daf8";a:12:{s:3:"tag";s:13:"653b1e023daf8";s:3:"url";s:50:"https://app.3dxh.dev.1nww.com/api/user/modify-user";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373122.230216;s:10:"statusCode";i:200;s:8:"sqlCount";i:19;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7896296;s:14:"processingTime";d:0.5959219932556152;}s:13:"653b1e02cd9df";a:12:{s:3:"tag";s:13:"653b1e02cd9df";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=MTY2bGhoL1JscU1YRXZHNzVEMzJTOVBqcVZrNjJXTkRoc1JkbVVyekJNbz0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373122.819665;s:10:"statusCode";i:200;s:8:"sqlCount";i:10;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7506000;s:14:"processingTime";d:0.0999751091003418;}s:13:"653b1e9dd3887";a:12:{s:3:"tag";s:13:"653b1e9dd3887";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698373277.841142;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.1113579273223877;}s:13:"653b31fae18a9";a:12:{s:3:"tag";s:13:"653b31fae18a9";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698378234.889292;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.1679680347442627;}s:13:"653b31fae0a8d";a:12:{s:3:"tag";s:13:"653b31fae0a8d";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=2&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698378234.884534;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7741496;s:14:"processingTime";d:0.17647194862365723;}s:13:"653b34f889953";a:12:{s:3:"tag";s:13:"653b34f889953";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379000.541521;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.16112709045410156;}s:13:"653b34f9d2917";a:12:{s:3:"tag";s:13:"653b34f9d2917";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=1&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379001.840092;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.13307595252990723;}s:13:"653b34fc466d6";a:12:{s:3:"tag";s:13:"653b34fc466d6";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379004.265897;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.13575482368469238;}s:13:"653b34fea23e3";a:12:{s:3:"tag";s:13:"653b34fea23e3";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698379006.641627;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10767507553100586;}s:13:"653b38ed3218b";a:12:{s:3:"tag";s:13:"653b38ed3218b";s:3:"url";s:26:"https://124.71.161.49:443/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"35.203.210.94";s:4:"time";d:1698380013.184549;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276024;s:14:"processingTime";d:0.1260838508605957;}s:13:"653b51e5848fa";a:12:{s:3:"tag";s:13:"653b51e5848fa";s:3:"url";s:22:"https://124.71.161.49/";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:14:"172.104.96.196";s:4:"time";d:1698386405.521182;s:10:"statusCode";i:200;s:8:"sqlCount";i:5;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7276120;s:14:"processingTime";d:0.1289980411529541;}s:13:"653b53a68ac61";a:12:{s:3:"tag";s:13:"653b53a68ac61";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698386854.546163;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.15754199028015137;}s:13:"653b53a6c849f";a:12:{s:3:"tag";s:13:"653b53a6c849f";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=1&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698386854.796934;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.1349620819091797;}s:13:"653b53a7a39bf";a:12:{s:3:"tag";s:13:"653b53a7a39bf";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=2&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698386855.647;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7871280;s:14:"processingTime";d:0.13311195373535156;}s:13:"653b54f03f393";a:12:{s:3:"tag";s:13:"653b54f03f393";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387184.236593;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.13203191757202148;}s:13:"653b54f160b8c";a:12:{s:3:"tag";s:13:"653b54f160b8c";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387185.373382;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.13925909996032715;}s:13:"653b54f1d1140";a:12:{s:3:"tag";s:13:"653b54f1d1140";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387185.831098;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.1133878231048584;}s:13:"653b54f24f60e";a:12:{s:3:"tag";s:13:"653b54f24f60e";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387186.300861;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10817122459411621;}s:13:"653b54f9b76c4";a:12:{s:3:"tag";s:13:"653b54f9b76c4";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387193.726421;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.11021304130554199;}s:13:"653b54fa6185f";a:12:{s:3:"tag";s:13:"653b54fa6185f";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387194.376776;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10602188110351562;}s:13:"653b54fb7466c";a:12:{s:3:"tag";s:13:"653b54fb7466c";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387195.454873;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10492300987243652;}s:13:"653b54fc14aa3";a:12:{s:3:"tag";s:13:"653b54fc14aa3";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387196.062686;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10144209861755371;}s:13:"653b54fd60f67";a:12:{s:3:"tag";s:13:"653b54fd60f67";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387197.373257;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10657501220703125;}s:13:"653b54fddc628";a:12:{s:3:"tag";s:13:"653b54fddc628";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387197.874117;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.11177682876586914;}s:13:"653b54fe56e6b";a:12:{s:3:"tag";s:13:"653b54fe56e6b";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387198.333927;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10491800308227539;}s:13:"653b54fed6da3";a:12:{s:3:"tag";s:13:"653b54fed6da3";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387198.857706;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10045003890991211;}s:13:"653b54ff8eec6";a:12:{s:3:"tag";s:13:"653b54ff8eec6";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387199.562321;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10167598724365234;}s:13:"653b550118cf1";a:12:{s:3:"tag";s:13:"653b550118cf1";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387201.076463;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.11063194274902344;}s:13:"653b55020306c";a:12:{s:3:"tag";s:13:"653b55020306c";s:3:"url";s:147:"https://app.3dxh.dev.1nww.com/api/report/index?access_token=QnQ2VkI0aGZ4ZXk2eVN2WjJ6OTBEdFBqcVZrNjJXTkRNVk4zZUJvUytpOD0%3D&status=0&page=1&limit=20";s:4:"ajax";i:0;s:6:"method";s:3:"GET";s:2:"ip";s:13:"27.154.114.11";s:4:"time";d:1698387201.989957;s:10:"statusCode";i:200;s:8:"sqlCount";i:14;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:7789888;s:14:"processingTime";d:0.10572481155395508;}s:13:"653b83a48a63e";a:12:{s:3:"tag";s:13:"653b83a48a63e";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399140.446058;s:10:"statusCode";i:500;s:8:"sqlCount";i:0;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:6750056;s:14:"processingTime";d:0.2161710262298584;}s:13:"653b83b106b22";a:12:{s:3:"tag";s:13:"653b83b106b22";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399152.969246;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.3143439292907715;}s:13:"653b84467ab03";a:12:{s:3:"tag";s:13:"653b84467ab03";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399302.310241;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.3638410568237305;}s:13:"653b84571c978";a:12:{s:3:"tag";s:13:"653b84571c978";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399319.045634;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.3158588409423828;}s:13:"653b84ded5803";a:12:{s:3:"tag";s:13:"653b84ded5803";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399454.737803;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.2797701358795166;}s:13:"653b84e82e2a8";a:12:{s:3:"tag";s:13:"653b84e82e2a8";s:3:"url";s:154:"http://cxfoot.com/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124";s:4:"ajax";i:0;s:6:"method";s:4:"POST";s:2:"ip";s:9:"127.0.0.1";s:4:"time";d:1698399464.069484;s:10:"statusCode";i:200;s:8:"sqlCount";i:9;s:9:"mailCount";i:0;s:9:"mailFiles";a:0:{}s:10:"peakMemory";i:9676688;s:14:"processingTime";d:1.2574028968811035;}} \ No newline at end of file diff --git a/runtime/logs/app.log b/runtime/logs/app.log index 53f2d34..a537903 100644 --- a/runtime/logs/app.log +++ b/runtime/logs/app.log @@ -53117,3 +53117,137 @@ $_SERVER = [ 'REQUEST_TIME_FLOAT' => 1698387201.99 'REQUEST_TIME' => 1698387201 ] +2023-10-27 17:32:20 [127.0.0.1][-][-][error][yii\db\Exception] PDOException: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php:722 +Stack trace: +#0 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(722): PDO->__construct('mysql:host=127....', 'root', 'root', NULL) +#1 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(637): yii\db\Connection->createPdoInstance() +#2 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1067): yii\db\Connection->open() +#3 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1054): yii\db\Connection->getMasterPdo() +#4 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(261): yii\db\Connection->getSlavePdo() +#5 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(1163): yii\db\Command->prepare(true) +#6 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(410): yii\db\Command->queryInternal('fetchAll', NULL) +#7 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(320): yii\db\Command->queryAll() +#8 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(125): yii\db\mysql\Schema->findColumns(Object(yii\db\TableSchema)) +#9 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(756): yii\db\mysql\Schema->loadTableSchema('cx_wechat_app') +#10 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(192): yii\db\Schema->getTableMetadata('{{%wechat_app}}', 'schema', false) +#11 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(439): yii\db\Schema->getTableSchema('{{%wechat_app}}') +#12 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(266): yii\db\ActiveRecord::getTableSchema() +#13 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(238): yii\db\ActiveRecord::filterValidColumnNames(Object(yii\db\Connection), Array) +#14 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(195): yii\db\ActiveRecord::filterCondition(Array, Array) +#15 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\BaseActiveRecord.php(110): yii\db\ActiveRecord::findByCondition(Array) +#16 D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php(64): yii\db\BaseActiveRecord::findOne(Array) +#17 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\BaseObject.php(109): app\modules\api\controllers\Controller->init() +#18 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Controller.php(95): yii\base\BaseObject->__construct(Array) +#19 [internal function]: yii\base\Controller->__construct('user', Object(app\modules\api\Module), Array) +#20 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(411): ReflectionClass->newInstanceArgs(Array) +#21 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(170): yii\di\Container->build('app\\modules\\api...', Array, Array) +#22 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\BaseYii.php(345): yii\di\Container->get('app\\modules\\api...', Array) +#23 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(666): yii\BaseYii::createObject('app\\modules\\api...', Array) +#24 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(620): yii\base\Module->createControllerByID('user') +#25 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(612): yii\base\Module->createController('modify-user') +#26 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(546): yii\base\Module->createController('user/modify-use...') +#27 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/user/modify...', Array) +#28 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) +#29 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() +#30 {main} + +Next yii\db\Exception: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) in D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php:648 +Stack trace: +#0 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1067): yii\db\Connection->open() +#1 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Connection.php(1054): yii\db\Connection->getMasterPdo() +#2 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(261): yii\db\Connection->getSlavePdo() +#3 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(1163): yii\db\Command->prepare(true) +#4 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Command.php(410): yii\db\Command->queryInternal('fetchAll', NULL) +#5 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(320): yii\db\Command->queryAll() +#6 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\mysql\Schema.php(125): yii\db\mysql\Schema->findColumns(Object(yii\db\TableSchema)) +#7 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(756): yii\db\mysql\Schema->loadTableSchema('cx_wechat_app') +#8 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\Schema.php(192): yii\db\Schema->getTableMetadata('{{%wechat_app}}', 'schema', false) +#9 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(439): yii\db\Schema->getTableSchema('{{%wechat_app}}') +#10 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(266): yii\db\ActiveRecord::getTableSchema() +#11 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(238): yii\db\ActiveRecord::filterValidColumnNames(Object(yii\db\Connection), Array) +#12 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\ActiveRecord.php(195): yii\db\ActiveRecord::filterCondition(Array, Array) +#13 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\db\BaseActiveRecord.php(110): yii\db\ActiveRecord::findByCondition(Array) +#14 D:\phpstudy_pro\WWW\cxfoot\modules\api\controllers\Controller.php(64): yii\db\BaseActiveRecord::findOne(Array) +#15 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\BaseObject.php(109): app\modules\api\controllers\Controller->init() +#16 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Controller.php(95): yii\base\BaseObject->__construct(Array) +#17 [internal function]: yii\base\Controller->__construct('user', Object(app\modules\api\Module), Array) +#18 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(411): ReflectionClass->newInstanceArgs(Array) +#19 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\di\Container.php(170): yii\di\Container->build('app\\modules\\api...', Array, Array) +#20 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\BaseYii.php(345): yii\di\Container->get('app\\modules\\api...', Array) +#21 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(666): yii\BaseYii::createObject('app\\modules\\api...', Array) +#22 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(620): yii\base\Module->createControllerByID('user') +#23 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(612): yii\base\Module->createController('modify-user') +#24 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Module.php(546): yii\base\Module->createController('user/modify-use...') +#25 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\web\Application.php(103): yii\base\Module->runAction('api/user/modify...', Array) +#26 D:\phpstudy_pro\WWW\cxfoot\vendor\yiisoft\yii2\base\Application.php(384): yii\web\Application->handleRequest(Object(yii\web\Request)) +#27 D:\phpstudy_pro\WWW\cxfoot\web\index.php(11): yii\base\Application->run() +#28 {main} +Additional Information: + +2023-10-27 17:32:20 [127.0.0.1][-][-][info][application] $_GET = [ + 'access_token' => 'bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0=' + 'X-Csrf' => 'ag7x1Afy1r0q8j4y05vk3s4118hx7124' +] + +$_POST = [ + 'real_name' => '王五' + 'gender' => '1' + 'is_view' => '42.5' + 'mobile_phone' => '18222222225' +] + +$_FILES = [] + +$_COOKIE = [ + '_csrf' => 'a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:{i:0' + 's:5:\"_csrf\"' => '' + 'i:1' => '' + 's:32:\"0agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd\"' => '' + '}' => '' +] + +$_SERVER = [ + 'PATH' => 'C:\\imagemagick;C:\\Program Files (x86)\\Common Files\\Intel\\Shared Libraries\\redist\\intel64_win\\compiler;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;E:\\anzhuang\\QTSystem\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;D:\\Git\\cmd;D:\\svn\\bin;C:\\Users\\Administrator\\AppData\\Local\\Programs\\Python\\Python311;C:\\Users\\Administrator\\AppData\\Local\\Programs\\Python\\Python311\\Scripts;D:\\Xftp 7\\;D:\\微信web开发者工具\\dll;C:\\Users\\Administrator\\AppData\\Local\\Microsoft\\WindowsApps;;D:\\PhpStorm 2021.2.1\\bin;;D:\\Microsoft VS Code\\bin;D:\\phpstudy_pro\\Extensions\\php\\php7.4.3nts;C:\\Users\\Administrator\\AppData\\Local\\ComposerSetup\\bin;C:\\Users\\Administrator\\AppData\\Roaming\\Composer\\vendor\\bin' + 'SYSTEMROOT' => 'C:\\WINDOWS' + 'COMSPEC' => 'C:\\WINDOWS\\system32\\cmd.exe' + 'PATHEXT' => '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC' + 'WINDIR' => 'C:\\WINDOWS' + 'PHPRC' => 'D:/phpstudy_pro/Extensions/php/php7.3.4nts' + '_FCGI_SHUTDOWN_EVENT_' => '9080' + 'SCRIPT_NAME' => '/index.php' + 'REQUEST_URI' => '/api/user/modify-user?access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124' + 'QUERY_STRING' => 'access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124' + 'REQUEST_METHOD' => 'POST' + 'SERVER_PROTOCOL' => 'HTTP/1.1' + 'GATEWAY_INTERFACE' => 'CGI/1.1' + 'REDIRECT_QUERY_STRING' => 'access_token=bVM2WGUxaVgwZk1nelZuMnpheXE5cDA0dXQ1dkI0QzIyaHlJbVpNWTNIWT0%3D&X-Csrf=ag7x1Afy1r0q8j4y05vk3s4118hx7124' + 'REDIRECT_URL' => '/api/user/modify-user' + 'REMOTE_PORT' => '54260' + 'SCRIPT_FILENAME' => 'D:/phpstudy_pro/WWW/cxfoot/web/index.php' + 'SERVER_ADMIN' => 'admin@example.com' + 'CONTEXT_DOCUMENT_ROOT' => 'D:/phpstudy_pro/WWW/cxfoot/web' + 'CONTEXT_PREFIX' => '' + 'REQUEST_SCHEME' => 'http' + 'DOCUMENT_ROOT' => 'D:/phpstudy_pro/WWW/cxfoot/web' + 'REMOTE_ADDR' => '127.0.0.1' + 'SERVER_PORT' => '80' + 'SERVER_ADDR' => '127.0.0.1' + 'SERVER_NAME' => 'cxfoot.com' + 'SERVER_SOFTWARE' => 'Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02' + 'SERVER_SIGNATURE' => '' + 'SystemRoot' => 'C:\\WINDOWS' + 'CONTENT_LENGTH' => '508' + 'CONTENT_TYPE' => 'multipart/form-data; boundary=--------------------------830050929129078381707191' + 'HTTP_HOST' => 'cxfoot.com' + 'HTTP_COOKIE' => '_csrf=a8b4fcde61c1d69f745885f519eaae91db7a8668afe5a409e03eff0c43484ba8a:2:%7Bi:0;s:5:%22_csrf%22;i:1;s:32:%220agcdEBhUF7RG5gXkV_cPYEVrmXq3BPd%22;%7D' + 'HTTP_CONNECTION' => 'close' + 'HTTP_ACCEPT_ENCODING' => 'gzip, deflate, br' + 'HTTP_ACCEPT' => '*/*' + 'HTTP_CACHE_CONTROL' => 'no-cache' + 'HTTP_USER_AGENT' => 'PostmanRuntime-ApipostRuntime/1.1.0' + 'REDIRECT_STATUS' => '200' + 'FCGI_ROLE' => 'RESPONDER' + 'PHP_SELF' => '/index.php' + 'REQUEST_TIME_FLOAT' => 1698399140.4461 + 'REQUEST_TIME' => 1698399140 +]